QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#491849#4602. Stormwindfractal#AC ✓0ms3612kbC++17465b2024-07-25 23:26:292024-07-25 23:26:29

Judging History

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

  • [2024-07-25 23:26:29]
  • 评测
  • 测评结果:AC
  • 用时:0ms
  • 内存:3612kb
  • [2024-07-25 23:26:29]
  • 提交

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