QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#864388 | #1. I/O Test | lql | 2.0E-5 | 1ms | 3712kb | C++14 | 751b | 2025-01-20 15:43:47 | 2025-01-20 15:43:48 |
Judging History
config.txt
1 1
input_test
#include<bits/stdc++.h>
#include<bits/extc++.h>
using namespace std;
using namespace __gnu_cxx;
using namespace __gnu_pbds;
#define ll long long
#define elif else if
#define sf scanf
#define pf printf
signed main(){
ios::sync_with_stdio(0);
cin.tie(0),cout.tie(0);
int n;
cin>>n;
ll res=0;
for(int i=1,a;i<=n;i++) cin>>a,res+=a;
cout<<res;
return 0;
}
output_test
#include<bits/stdc++.h>
#include<bits/extc++.h>
using namespace std;
using namespace __gnu_cxx;
using namespace __gnu_pbds;
#define ll long long
#define elif else if
#define sf scanf
#define pf printf
signed main(){
ios::sync_with_stdio(0);
cin.tie(0),cout.tie(0);
int n;
cin>>n;
for(int i=0;i<n;i++) cout<<int(i+1e8*1)<<" ";
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 1e-05
Acceptable Answer
Test #1:
score: 1e-05
Acceptable Answer
time: 0ms
memory: 3712kb
input:
1 196559147
output:
196559147
result:
points 0.00000010 input test passed
Subtask #2:
score: 1e-05
Acceptable Answer
Test #2:
score: 1e-05
Acceptable Answer
time: 1ms
memory: 3712kb
input:
1
output:
100000000
result:
points 0.00000010 output test passed