QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#32144 | #1. I/O Test | RcX9GLlqXIOSDE | 200 ✓ | 957ms | 3736kb | C++23 | 502b | 2022-05-17 20:12:37 | 2022-05-17 20:17: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(nullptr);
cout.tie(nullptr);
int n, x; long long sum = 0;
cin >> n;
while (n--) {
cin >> x;
sum += x;
}
std::cout << sum << '\n';
}
output_test
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
int n, x; long long sum = 0;
cin >> n;
while (n--) {
cout << "123456789\n";
}
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 100
Accepted
Test #1:
score: 100
Accepted
time: 957ms
memory: 3736kb
input:
10000000 771733547 963745003 899458649 928917942 141488624 842178171 751506938 148195545 631355740 805420298 935834948 479618812 667473366 456378732 236035440 529965359 792809038 343411196 601246487 386267845 271417076 222701793 531316482 130938392 353291504 623268166 178121742 555612397 518250295 2...
output:
5499305246464816
result:
points 1.0 input test passed
Subtask #2:
score: 100
Accepted
Test #2:
score: 100
Accepted
time: 208ms
memory: 3612kb
input:
10000000
output:
123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 ...
result:
points 1.0 output test passed