QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#442911#6763. Triangle PendantN_z_WA 0ms3484kbC++14113b2024-06-15 13:49:102024-06-15 13:49:11

Judging History

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

  • [2024-06-15 13:49:11]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3484kb
  • [2024-06-15 13:49:10]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
int main()
{
	int n;
	cin>>n;
	while(n--)cout<<"nan"<<endl;
}

详细

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3484kb

input:

2
1 1 1 1 1 1
2 3 3 1 1 1

output:

nan
nan

result:

wrong output format Expected double, but "nan" found