QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#326234 | #1. I/O Test | tanfuxuan | 100 | 535ms | 3680kb | C++14 | 333b | 2024-02-12 18:24:59 | 2024-02-12 18:25:00 |
Judging History
config.txt
10000000 10000000
input_test
#include<iostream>
int main(){
std::ios::sync_with_stdio(0);
std::cin.tie(0);
int n,a;
std::cin>>n;
while(n--) std::cin>>a;
}
output_test
#include<iostream>
int main(){
std::ios::sync_with_stdio(0);
std::cout.tie(0);
int n;
std::cin>>n;
while(n--) std::cout<<int(1e8)<<' ';
}
详细
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 0
Wrong Answer
time: 535ms
memory: 3632kb
input:
10000000 884385186 251760606 479737897 593564752 567177676 545824271 860091973 534391108 877511412 830083160 907829341 157554512 173450713 814358591 947852988 488129967 710839327 804834790 505263146 270247925 137555006 297228046 553249153 893001901 472145875 673228032 420484328 663593728 685702135 5...
output:
result:
wrong output format Unexpected end of file - int64 expected
Subtask #2:
score: 100
Accepted
Test #2:
score: 100
Accepted
time: 420ms
memory: 3680kb
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