QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#199101#1. I/O Test_LAP_200 ✓602ms3616kbC++14524b2023-10-03 21:04:022023-10-03 21:04:03

Judging History

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

  • [2023-10-03 21:04:03]
  • 评测
  • 测评结果:200
  • 用时:602ms
  • 内存:3616kb
  • [2023-10-03 21:04:02]
  • 提交

config.txt

10000000 10000000

input_test

#include <bits/stdc++.h>

using namespace std;

int main() {
    ios::sync_with_stdio(false), cin.tie(0);

    int n; cin >> n; long long r = 0;
    for(int i = 1; i <= n; i ++) {
        int x; cin >> x; r += x;
    }
    cout << r << '\n';

    return 0;
}

output_test

#include <bits/stdc++.h>

using namespace std;

int main() {
    ios::sync_with_stdio(false), cin.tie(0);

    int n; cin >> n;
    for(int i = 1; i <= n; i ++)
        cout << "100000000" << " \n"[i == n];

    return 0;
}

详细

Subtask #1:

score: 100
Accepted

Test #1:

score: 100
Accepted
time: 602ms
memory: 3444kb

input:

10000000
768598938 934260021 883920357 167244620 421149437 877653401 578361208 162061519 549265706 486726184 328202189 942969241 183113606 676455746 502645008 927260334 857324056 599305676 348683612 327020792 625842259 490398338 708839986 638596602 176539962 313383837 817366835 443741783 349735454 2...

output:

5499993408674453

result:

points 1.0 input test passed

Subtask #2:

score: 100
Accepted

Test #2:

score: 100
Accepted
time: 241ms
memory: 3616kb

input:

10000000

output:

100000000 100000000 100000000 100000000 100000000 100000000 100000000 100000000 100000000 100000000 100000000 100000000 100000000 100000000 100000000 100000000 100000000 100000000 100000000 100000000 100000000 100000000 100000000 100000000 100000000 100000000 100000000 100000000 100000000 100000000 ...

result:

points 1.0 output test passed