QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#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;
}
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