QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#864386#1. I/O Testlql1.0E-5 0ms4096kbC++14746b2025-01-20 15:42:192025-01-20 15:42:20

Judging History

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

  • [2025-01-20 15:42:20]
  • 评测
  • 测评结果:1.0E-5
  • 用时:0ms
  • 内存:4096kb
  • [2025-01-20 15:42:19]
  • 提交

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

詳細信息

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