QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#50508#858. GCD vs. XORSGColinAC ✓12295ms7604kbC++962b2022-09-26 21:50:172022-09-26 21:50:20

Judging History

你现在查看的是最新测评结果

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2022-09-26 21:50:20]
  • 评测
  • 测评结果:AC
  • 用时:12295ms
  • 内存:7604kb
  • [2022-09-26 21:50:17]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

inline int rd() {
	int x = 0;
	bool f = false;
	char c = getchar();
	for (; !isdigit(c); c = getchar()) f |= (c == '-');
	for (; isdigit(c); c = getchar()) x = x * 10 + (c ^ 48);
	return f ? -x : x;
}

#define fr     first
#define sc     second
#define pb     push_back
#define mp     make_pair
#define pii    pair<int, int>
#define all(x) (x).begin(), (x).end() 

#define N 1000007

int cnt[N];

int gcd(int a, int b) {return b ? gcd(b, a % b) : a;}

inline void work() {
	int n = rd();
	memset(cnt, 0, sizeof(cnt));
	for (int i = 1; i <= n; ++i) ++cnt[rd()];
	ll ans = 0;
	for (int d = 1; d < N; ++d)
		for (int i = d; i < N; i += d) {
			int tar = i ^ d;
			if (tar >= N) continue;
			if (cnt[tar] && gcd(tar, i) == d) ans += 1ll * cnt[i] * cnt[tar];
		}
	printf("%lld\n", ans / 2);
}

int main() {
	for (int t = rd(); t; --t) work();
	return 0;
}

详细

Test #1:

score: 100
Accepted
time: 27ms
memory: 7536kb

input:

1
4
2 3 4 3

output:

2

result:

ok 1 number(s): "2"

Test #2:

score: 0
Accepted
time: 470ms
memory: 7556kb

input:

20
43
128 66 452 384 400 441 232 203 228 33 284 156 128 190 197 292 388 31 179 343 147 206 450 284 180 73 273 130 168 250 405 203 235 340 309 28 267 395 152 191 295 463 344
54
48 7 12 37 49 24 5 18 15 37 26 57 53 59 22 10 2 16 36 52 64 1 56 42 38 46 53 7 2 8 60 38 54 11 19 50 20 61 6 50 27 5 26 3 4 ...

output:

9
54
13
7
8
34
47
11
1
102
6
5
37
1
3
8
8
348
15
0

result:

ok 20 numbers

Test #3:

score: 0
Accepted
time: 12295ms
memory: 7604kb

input:

20
1318434
383714 853663 66866 511925 858736 184314 296349 849141 468962 414270 917939 220934 778184 984811 194692 105206 528188 310859 57152 790101 274637 529663 931099 79533 179471 539390 210762 400829 514992 127623 369248 168711 380204 767781 753089 645551 714964 101060 340524 937457 928656 65201...

output:

3032046
3638995
2800796
2440602
4854508
3744477
2051988
2014444
1784404
4514141
3348718
2455324
2051403
2133141
3042193
4827212
4227070
2349812
6977138
999999972775

result:

ok 20 numbers