QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#864386 | #1. I/O Test | lql | 1.0E-5 | 0ms | 4096kb | C++14 | 746b | 2025-01-20 15:42:19 | 2025-01-20 15:42:20 |
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<<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 920438352
output:
920438352
result:
points 0.00000010 input test passed
Subtask #2:
score: 0
Wrong Answer
Test #2:
score: 0
Wrong Answer
time: 0ms
memory: 4096kb
input:
1
output:
1e+08
result:
wrong output format Expected integer, but "1e+08" found