QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#522809 | #1. I/O Test | louhao088 | Compile Error | / | / | C++14 | 5.0kb | 2024-08-17 15:02:29 | 2024-08-17 15:02:29 |
Judging History
config.txt
#include<bits/stdc++.h> #define cp const point & #define cl const line & #define cc const circle & #define LD long double using namespace std; const LD pi = std::numbers::pi; const LD eps = 1e-12; int sgn(LD x) { return x > eps ? 1 : (x < -eps ? -1 : 0); } struct point { LD x, y; point operator +(cp a) const { return {x + a.x, y + a.y}; } point operator -(cp a) const { return {x - a.x, y - a.y}; } point operator *(LD t) con...
input_test
output_test
Details
Invalid Configuration File: failed to read Nin and Nout