QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#442911 | #6763. Triangle Pendant | N_z_ | WA | 0ms | 3484kb | C++14 | 113b | 2024-06-15 13:49:10 | 2024-06-15 13:49:11 |
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: 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