Submission #1774753


Source Code Expand

#include <bits/stdc++.h>

#define x first
#define y second
#define For(i, j, k) for(int i = j; i <= k; i++)

using namespace std;

typedef long long LL;

const int N = 1e5 + 10;
const LL MAX = 1e11;

int n, ans;
map<LL, int> cnt;
map<LL, LL> M;

int main(){
	scanf("%d", &n);

	while(n--){
		LL x;
		scanf("%lld", &x);

		int r = pow(x, 1.0 / 3) + 3;
		LL sqr = 1, single = 1;

		For(i, 2, r) if(x % i == 0){
			int c = 0;
			while(x % i == 0) x /= i, ++c;
			c %= 3;

			if(c == 1) single *= i;
			else if(c == 2) sqr *= i;
		}

		LL s = LL(sqrt(x) + 1e-9);
		if(s * s == x) sqr *= s;
		else single *= x;

		if(single * sqr > MAX / single){
			++ans;
			continue;
		}

		LL b = single * single * sqr, a = sqr * sqr * single;
		cnt[a]++;
		M[a] = b;

	}

	for(auto s : cnt){
		LL y = M[s.x];

		if(s.x == y){
			++ans;
			continue;
		}

		if(!cnt.count(y)) ans += s.y;
		else if(s.x > y) ans += max(s.y, cnt[y]);
	}

	printf("%d\n", ans);
	return 0;
}

Submission Info

Submission Time
Task D - Anticube
User dy0607
Language C++14 (GCC 5.4.1)
Score 1100
Code Size 1016 Byte
Status AC
Exec Time 2293 ms
Memory 10624 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:19:17: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d", &n);
                 ^
./Main.cpp:23:20: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
   scanf("%lld", &x);
                    ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 1100 / 1100
Status
AC × 3
AC × 51
Set Name Test Cases
Sample s1.txt, s2.txt, s3.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, 17.txt, 18.txt, 19.txt, 20.txt, 21.txt, 22.txt, 23.txt, 24.txt, 25.txt, 26.txt, 27.txt, 28.txt, 29.txt, 30.txt, 31.txt, 32.txt, 33.txt, 34.txt, 35.txt, 36.txt, 37.txt, 38.txt, 39.txt, 40.txt, 41.txt, 42.txt, 43.txt, 44.txt, 45.txt, 46.txt, 47.txt, 48.txt, s1.txt, s2.txt, s3.txt
Case Name Status Exec Time Memory
01.txt AC 1710 ms 256 KB
02.txt AC 1711 ms 256 KB
03.txt AC 1709 ms 256 KB
04.txt AC 1710 ms 256 KB
05.txt AC 1709 ms 256 KB
06.txt AC 1710 ms 256 KB
07.txt AC 1710 ms 256 KB
08.txt AC 1711 ms 256 KB
09.txt AC 1711 ms 256 KB
10.txt AC 1709 ms 256 KB
11.txt AC 1675 ms 256 KB
12.txt AC 1678 ms 256 KB
13.txt AC 301 ms 4224 KB
14.txt AC 307 ms 4224 KB
15.txt AC 312 ms 4224 KB
16.txt AC 306 ms 4224 KB
17.txt AC 800 ms 256 KB
18.txt AC 800 ms 256 KB
19.txt AC 804 ms 256 KB
20.txt AC 799 ms 256 KB
21.txt AC 1132 ms 2176 KB
22.txt AC 1127 ms 2176 KB
23.txt AC 1129 ms 2176 KB
24.txt AC 1128 ms 2176 KB
25.txt AC 1134 ms 2176 KB
26.txt AC 1133 ms 2176 KB
27.txt AC 184 ms 10624 KB
28.txt AC 16 ms 256 KB
29.txt AC 27 ms 256 KB
30.txt AC 28 ms 256 KB
31.txt AC 28 ms 256 KB
32.txt AC 28 ms 256 KB
33.txt AC 1 ms 256 KB
34.txt AC 2293 ms 256 KB
35.txt AC 1093 ms 256 KB
36.txt AC 1 ms 256 KB
37.txt AC 1586 ms 768 KB
38.txt AC 1583 ms 640 KB
39.txt AC 1581 ms 640 KB
40.txt AC 1586 ms 640 KB
41.txt AC 1 ms 256 KB
42.txt AC 1 ms 256 KB
43.txt AC 1 ms 256 KB
44.txt AC 1 ms 256 KB
45.txt AC 1 ms 256 KB
46.txt AC 1 ms 256 KB
47.txt AC 1 ms 256 KB
48.txt AC 1 ms 256 KB
s1.txt AC 1 ms 256 KB
s2.txt AC 1 ms 256 KB
s3.txt AC 1 ms 256 KB