QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#442938 | #6763. Triangle Pendant | N_z_ | WA | 0ms | 3684kb | C++14 | 114b | 2024-06-15 13:53:00 | 2024-06-15 13:53:01 |
Judging History
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: 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