would someone authoritative please let me know what compiler and settings does the judge use? It took me an hour to pin down the specific problem that judge will refuse the following C++ code with compiler error:
Code: Select all
#include <iostream>
#include <iomanip>
#include <algorithm>
using namespace std;
int main()
{
cout << fixed << 3.00;
return 0;
}
Thanks.