QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#491849 | #4602. Stormwind | fractal# | AC ✓ | 0ms | 3612kb | C++17 | 465b | 2024-07-25 23:26:29 | 2024-07-25 23:26:29 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
void solve() {
int n, m, k;
cin >> n >> m >> k;
int ans = 0;
for (int x = 0; x < n; ++x) {
int c = n / (x + 1);
c = (k + c - 1) / c;
if (m / c - 1 < 0) continue;
ans = max(ans, x + (m / c) - 1);
}
cout << ans << '\n';
}
int main() {
ios_base::sync_with_stdio(0), cin.tie(0);
int t = 1;
cin >> t;
while (t--) solve();
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3612kb
input:
100 4512 280 84534 5696 5722 24210 9479 4059 26673 2586 8773 48314 8276 8914 21669 7881 3626 21364 847 799 41930 9150 9736 35438 9717 9840 30434 9863 4670 5185 883 299 11160 9242 2987 58772 6320 4154 48160 3769 7659 28041 3800 1368 59568 2424 1711 76469 8361 7862 26295 376 5567 79535 1509 7487 77865...
output:
13 1143 1353 460 2970 1312 14 2433 2459 4930 22 461 525 956 85 52 2089 25 142 97 987 1756 956 526 8602 25 2260 4 489 366 276 36 1295 2576 420 733 1615 1104 761 40 905 729 825 944 1469 460 865 102 2772 251 741 7021 718 175 1105 566 1263 1273 151 4381 2897 172 203 367 1522 753 1032 30 972 8716 143 154...
result:
ok 100 lines