QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#427084 | #1. I/O Test | bycwxbd | 100 | 496ms | 3596kb | C++14 | 381b | 2024-06-01 09:30:50 | 2024-06-01 09:30:51 |
Judging History
config.txt
10000000 10000000
input_test
#include <bits/stdc++.h>
using namespace std;
int n, x;
long long sum;
int main(){
cin >> n;
for(int i = 1; i <= n; i++){
cin >> x;
sum += x;
}
cout << sum << endl;
return 0;
}
output_test
#include <bits/stdc++.h>
using namespace std;
int n;
int main(){
cin >> n;
for(int i = 1e8; i < 1e8 + n; i++){
cout << i << ' ';
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 0
input_test Time Limit Exceeded
Test #1:
score: 0
input_test Time Limit Exceeded
input:
10000000 769651389 216739195 991636653 670430908 628309950 427985251 762590004 942396512 876424885 131006404 866680511 875224744 475692899 970837769 697520449 690573864 990042127 115568317 324834467 732840754 628604305 585515759 601721796 143529054 270382985 529601230 156528237 290435654 989991608 9...
output:
result:
Subtask #2:
score: 100
Accepted
Test #2:
score: 100
Accepted
time: 496ms
memory: 3596kb
input:
10000000
output:
100000000 100000001 100000002 100000003 100000004 100000005 100000006 100000007 100000008 100000009 100000010 100000011 100000012 100000013 100000014 100000015 100000016 100000017 100000018 100000019 100000020 100000021 100000022 100000023 100000024 100000025 100000026 100000027 100000028 100000029 ...
result:
points 1.0 output test passed