QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#199101 | #1. I/O Test | _LAP_ | 200 ✓ | 602ms | 3616kb | C++14 | 524b | 2023-10-03 21:04:02 | 2023-10-03 21:04:03 |
Judging History
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;
}
Details
Tip: Click on the bar to expand more detailed information
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