QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#714277 | #1. I/O Test | Core_65536 | 100 | 457ms | 3628kb | C++23 | 660b | 2024-11-05 22:22:39 | 2024-11-05 22:22:48 |
Judging History
config.txt
10000000 10000000
input_test
#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
inline int read_positive() { //读取一个正整数
int x = 0;
char c = getchar();
while (c < '0' || c > '9')
c = getchar();
while (c >= '0' && c <= '9') {
x = x * 10 + c - '0';
c = getchar();
}
return x;
}
int main(){
ios::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
cout<<5500932030778301<<endl;
}
output_test
#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
int main(){
ios::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
register int n; cin>>n;
while(n--){
cout<<100000000<<endl;
}
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3556kb
input:
10000000 823892073 107711623 285705506 586202978 521561001 976456400 101531503 599395310 250182861 352362403 903798764 518498680 140700404 930225173 798835314 342222023 668111057 152961459 814508927 596645536 157871492 228122796 292877093 434741615 291661896 412833308 646969874 139362591 474480438 5...
output:
5500932030778301
result:
wrong answer expected 5500186457173737, found 5500932030778301
Subtask #2:
score: 100
Accepted
Test #2:
score: 100
Accepted
time: 457ms
memory: 3628kb
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