QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#368590 | #1. I/O Test | wsyear | 200 ✓ | 537ms | 3708kb | C++14 | 408b | 2024-03-27 13:40:31 | 2024-03-27 13:40:32 |
Judging History
config.txt
10000000 10000000
input_test
#include<bits/stdc++.h>
using namespace std;
int main() {
cin.tie(nullptr) -> ios::sync_with_stdio(false);
int n, x;
long long y = 0;
cin >> n;
while (n--) cin >> x, y += x;
cout << y << '\n';
}
output_test
#include<bits/stdc++.h>
using namespace std;
int main() {
cin.tie(nullptr) -> ios::sync_with_stdio(false);
int n = 10000000;
while (n--) cout << "111111111 ";
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 100
Accepted
Test #1:
score: 100
Accepted
time: 537ms
memory: 3704kb
input:
10000000 759441743 872248917 290468791 834689189 895020806 986550533 564322752 369784531 528507949 961126253 822715376 691609653 934901463 548528877 523400923 106324374 276272321 328999879 166201549 244301505 643304770 440819251 349676321 531223285 246585274 707135582 137646187 802301961 583730679 7...
output:
5500187277229882
result:
points 1.0 input test passed
Subtask #2:
score: 100
Accepted
Test #2:
score: 100
Accepted
time: 130ms
memory: 3708kb
input:
10000000
output:
111111111 111111111 111111111 111111111 111111111 111111111 111111111 111111111 111111111 111111111 111111111 111111111 111111111 111111111 111111111 111111111 111111111 111111111 111111111 111111111 111111111 111111111 111111111 111111111 111111111 111111111 111111111 111111111 111111111 111111111 ...
result:
points 1.0 output test passed