QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#295571#1. I/O TestzzuqyCompile Error//C++142.7kb2023-12-31 14:29:142023-12-31 14:29:15

Judging History

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

  • [2023-12-31 14:29:15]
  • 评测
  • [2023-12-31 14:29:14]
  • 提交

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


详细

Invalid Configuration File: failed to read Nin and Nout