QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#442938#6763. Triangle PendantN_z_WA 0ms3684kbC++14114b2024-06-15 13:53:002024-06-15 13:53:01

Judging History

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

  • [2024-06-15 13:53:01]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3684kb
  • [2024-06-15 13:53:00]
  • 提交

answer

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

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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