QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#714277#1. I/O TestCore_65536100 457ms3628kbC++23660b2024-11-05 22:22:392024-11-05 22:22:48

Judging History

你现在查看的是最新测评结果

  • [2024-11-05 22:22:48]
  • 评测
  • 测评结果:100
  • 用时:457ms
  • 内存:3628kb
  • [2024-11-05 22:22:39]
  • 提交

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;
    }
}

詳細信息

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