QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#721296#2509. Right-Coupled Numbersucup-team5062#AC ✓0ms3600kbC++20346b2024-11-07 15:47:112024-11-07 15:47:12

Judging History

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

  • [2024-11-07 15:47:12]
  • 评测
  • 测评结果:AC
  • 用时:0ms
  • 内存:3600kb
  • [2024-11-07 15:47:11]
  • 提交

answer

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

int Check(int N) {
	for (int x = 1; x * x <= N; x++) {
		if (N % x != 0) continue;
		int p = x;
		int q = N / x;
		if (2 * p >= q) return 1;
	}
	return 0;
}

int main() {
	int T, N; cin >> T;
	for (int t = 1; t <= T; t++) {
		cin >> N;
		cout << Check(N) << endl;
	}
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3596kb

input:

4
66
55
105
150

output:

1
0
0
1

result:

ok 4 lines

Test #2:

score: 0
Accepted
time: 0ms
memory: 3600kb

input:

1000
1
2
3
66
55
105
150
27757
14706
2141
7400
28642
6269
23121
25421
27118
21018
17067
15563
10085
29055
30316
20985
10636
3562
371
15868
20269
17415
2485
7091
4954
21331
28145
2339
4772
1769
17980
2246
7596
2869
5782
16953
3207
19832
3788
1263
26206
12365
14846
20304
23160
13287
25388
3083
16957
1...

output:

1
1
0
1
0
0
1
0
1
0
1
0
0
0
0
1
1
0
0
0
1
1
0
0
0
0
0
0
1
0
0
0
0
0
0
0
0
1
0
0
0
1
0
0
1
0
0
0
0
0
1
1
1
0
0
0
0
1
1
0
0
1
0
0
0
0
0
1
0
0
0
0
0
0
0
0
0
1
0
0
0
0
0
1
1
1
0
0
0
0
0
0
1
0
0
0
0
1
0
0
0
0
0
0
1
0
0
1
0
0
0
1
0
0
0
0
0
0
0
0
0
1
0
0
0
1
1
0
1
0
1
0
1
0
0
0
1
0
0
1
1
1
1
1
1
0
1
1
0
1
...

result:

ok 1000 lines