QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#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
詳細信息
Invalid Configuration File: failed to read Nin and Nout