QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#656207 | #1. I/O Test | Quartz_Blocks | 200 ✓ | 508ms | 3692kb | C++14 | 463b | 2024-10-19 11:48:25 | 2024-10-19 11:48:26 |
Judging History
config.txt
10000000 10000000
input_test
#include <bits/stdc++.h>
using namespace std;
int n;
int main(){
ios::sync_with_stdio(0);cin.tie(0);
cin >> n;
long long res = 0;
for(int i = 1,x;i <= n;i++) {
cin >> x;
res += x;
}
cout << res << endl;
return 0;
}
output_test
#include <bits/stdc++.h>
using namespace std;
int n;
int main(){
ios::sync_with_stdio(0);cin.tie(0);
cin >> n;
for(int i = 1;i <= n;i++) cout << 100000005 << ' ';
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 100
Accepted
Test #1:
score: 100
Accepted
time: 508ms
memory: 3692kb
input:
10000000 375730502 384105418 243300802 320513805 706432895 216676385 397005611 975079283 436260257 713166717 994548153 159124793 193909336 184176891 750014473 678338939 471741607 382441511 673121279 507977447 524786305 909432503 237890666 123914566 947698575 479629083 126086257 215289271 757082278 6...
output:
5500506266574349
result:
points 1.0 input test passed
Subtask #2:
score: 100
Accepted
Test #2:
score: 100
Accepted
time: 433ms
memory: 3544kb
input:
10000000
output:
100000005 100000005 100000005 100000005 100000005 100000005 100000005 100000005 100000005 100000005 100000005 100000005 100000005 100000005 100000005 100000005 100000005 100000005 100000005 100000005 100000005 100000005 100000005 100000005 100000005 100000005 100000005 100000005 100000005 100000005 ...
result:
points 1.0 output test passed