QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#459712 | #1. I/O Test | zhouzh | Compile Error | / | / | C++20 | 555b | 2024-06-30 11:55:42 | 2024-06-30 11:55:42 |
Judging History
config.txt
#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; int ans=0; for(int i=1; i<=n; i++) { int x; cin>>x; ans+=x; } cout<<ans<<endl; return 0; }
input_test
#include<bits/stdc++.h>
using namespace std;
int main() {
int n;
cin>>n;
int ans=0;
for(int i=1; i<=n; i++) {
int x;
cin>>x;
ans+=x;
}
cout<<ans<<endl;
return 0;
}
output_test
#include<bits/stdc++.h>
using namespace std;
int main() {
int n;
cin>>n;
int ans=0;
for(int i=1; i<=n; i++) {
int x;
cin>>x;
ans+=x;
}
cout<<ans<<endl;
return 0;
}
Details
Invalid Configuration File: failed to read Nin and Nout