QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#522809#1. I/O Testlouhao088Compile Error//C++145.0kb2024-08-17 15:02:292024-08-17 15:02:29

Judging History

你现在查看的是最新测评结果

  • [2024-08-17 15:02:29]
  • 评测
  • [2024-08-17 15:02:29]
  • 提交

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