QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#727582 | #2509. Right-Coupled Numbers | ucup-team5226# | AC ✓ | 2ms | 3636kb | C++20 | 422b | 2024-11-09 13:24:36 | 2024-11-09 13:24:39 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep2(i, a, b) for (ll i = a; i < b; i++)
void solve() {
int n;
cin >> n;
int ans = 0;
rep2(i, 1, n + 1) {
if (i * i > n) break;
if (n % i != 0) continue;
if (i * 2 >= n / i) ans = 1;
}
cout << ans << endl;
}
int main() {
ll t;
cin >> t;
rep2(_, 0, t) solve();
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3564kb
input:
4 66 55 105 150
output:
1 0 0 1
result:
ok 4 lines
Test #2:
score: 0
Accepted
time: 2ms
memory: 3636kb
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