QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#295571 | #1. I/O Test | zzuqy | Compile Error | / | / | C++14 | 2.7kb | 2023-12-31 14:29:14 | 2023-12-31 14:29:15 |
Judging History
config.txt
#include <bits/stdc++.h> #define EPS 1e-9 struct Vector { double x, y; inline Vector() { } inline Vector(double x, double y) { this->x = x; this->y = y; } inline Vector operator + (const Vector &a)const { return (Vector) { x + a.x, y + a.y }; } inline Vector operator - (const Vector &a)const { return (Vector) { x - a.x, y - a.y }; } inline Vector operator * (const double &a)const { return (Vector) { x *a, y *a }; } inline Vector o...
input_test
output_test
Details
Invalid Configuration File: failed to read Nin and Nout