QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#686881 | #9531. Weird Ceiling | 404Soloplayer# | WA | 2ms | 3688kb | C++14 | 775b | 2024-10-29 16:15:00 | 2024-10-29 16:15:00 |
Judging History
answer
#include <bits/stdc++.h>
#define LL long long
using namespace std;
typedef long long ll;
const ll mn = 1e6+10;
vector<LL> sta;
void solve(){
sta.clear();
LL n;
cin >> n;
LL sqr = sqrt(n);
for (int i = 1; i <= sqr; i++)
if (!(n % i))
sta.push_back(i);
for (int i = sqr - 1; i > 0; i--)
if (!(n % i))
sta.push_back(n / i);
int m = sta.size();
sta.push_back(n + 1);
LL ans = 0;
for (int i = 0; i < m; i++)
ans += (sta[i +1] - sta[i]) * (n / sta[i]);
cout << ans << "\n";
}
int main(){
//ios::sync_with_stdio(false);cin.tie(0);
ll tt = 1;
cin>>tt;
while(tt--) solve();
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3596kb
input:
3 5 451 114514
output:
21 10251 7075858
result:
ok 3 lines
Test #2:
score: -100
Wrong Answer
time: 2ms
memory: 3688kb
input:
1000 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101...
output:
1 4 9 9 21 19 43 33 37 36 111 43 157 64 91 65 273 73 343 91 113 144 507 105 201 196 163 134 813 141 931 161 221 324 351 169 1333 400 287 205 1641 225 1807 254 277 576 2163 249 589 301 443 326 2757 298 507 323 533 900 3423 315 3661 1024 463 385 625 386 4423 494 737 437 4971 397 5257 1444 551 590 969 ...
result:
wrong answer 2nd lines differ - expected: '3', found: '4'