QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#543431 | #1. I/O Test | 5un_xiaomivita_msg | 200 ✓ | 532ms | 3644kb | C++14 | 401b | 2024-09-01 16:49:10 | 2024-09-01 16:49:15 |
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),cout.tie(0);
long long ans=0;
int n;
cin>>n;
for(int i=1;i<=n;i++)
{
int x;
cin>>x;
ans+=x;
}
cout<<ans<<endl;
return 0;
}
output_test
#include<iostream>
using namespace std;
int main(){
int n;
cin>>n;
for(int i=0;i<n;i++){
cout<<100000000<<' ';
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 100
Accepted
Test #1:
score: 100
Accepted
time: 532ms
memory: 3644kb
input:
10000000 479291217 771656583 208123264 513841775 320330017 952861939 709601425 842236651 339070972 615054548 466665506 607075175 791041777 528527868 454918531 809137297 674914403 139964281 168818056 356912284 241667649 480547161 428032418 281515048 791655577 227127473 764462589 585919749 750337773 3...
output:
5499371942087028
result:
points 1.0 input test passed
Subtask #2:
score: 100
Accepted
Test #2:
score: 100
Accepted
time: 490ms
memory: 3540kb
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