QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#225366 | #7521. Find the Gap | PetroTarnavskyi# | Compile Error | / | / | C++17 | 186b | 2023-10-24 16:06:25 | 2023-10-24 16:06:25 |
Judging History
answer
#include <iostream>
#include <set>
#include <map>
using namespace std;
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
cout << fixed << setprecision(15);
return 0;
}
Details
answer.code: In function ‘int main()’: answer.code:9:26: error: ‘setprecision’ was not declared in this scope 9 | cout << fixed << setprecision(15); | ^~~~~~~~~~~~