結果

問題 No.202 1円玉投げ
ユーザー らっしー(raccy)らっしー(raccy)
提出日時 2015-05-04 00:42:39
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 730 bytes
コンパイル時間 606 ms
コンパイル使用メモリ 57,960 KB
実行使用メモリ 13,860 KB
最終ジャッジ日時 2024-12-22 07:48:12
合計ジャッジ時間 111,695 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 1 ms
13,640 KB
testcase_03 AC 1 ms
13,600 KB
testcase_04 AC 1 ms
13,600 KB
testcase_05 AC 66 ms
13,604 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 4,649 ms
13,728 KB
testcase_10 AC 840 ms
13,476 KB
testcase_11 AC 3,165 ms
13,476 KB
testcase_12 AC 3,312 ms
13,604 KB
testcase_13 AC 1,036 ms
13,600 KB
testcase_14 AC 88 ms
13,640 KB
testcase_15 AC 4,293 ms
6,820 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 3,771 ms
6,816 KB
testcase_20 TLE -
testcase_21 AC 3,749 ms
6,816 KB
testcase_22 AC 4 ms
6,820 KB
testcase_23 AC 5 ms
6,820 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 3 ms
6,816 KB
testcase_26 AC 5 ms
6,820 KB
testcase_27 AC 4 ms
6,816 KB
testcase_28 AC 3 ms
6,820 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 4 ms
6,816 KB
testcase_31 AC 2 ms
6,816 KB
testcase_32 AC 4 ms
6,820 KB
testcase_33 AC 3 ms
6,816 KB
testcase_34 AC 4 ms
6,816 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 AC 2 ms
6,820 KB
testcase_40 AC 2 ms
13,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <list>

class Ichien {
	long long x;
	long long y;
public:
	Ichien(long long x, long long y) : x(x), y(y) {};
	bool kasanaru(Ichien *other) {
		long long x_diff = this->x - other->x;
		long long y_diff = this->y - other->y;
		return x_diff * x_diff + y_diff * y_diff < 400;
	}
};

int main() {
	int n;
	double x, y;
	Ichien *ichi;
	std::list<Ichien *> list;

	std::cin >> n;
	for (int i = 0; i < n; ++i) {
		std::cin >> x >> y;
		ichi = new Ichien(x, y);
		bool okeru = true;
		for (auto other: list) {
			if (ichi->kasanaru(other)) {
				okeru = false;
				break;
			}
		}
		if (okeru) {
			list.push_back(ichi);
		} else {
			delete ichi;
		}
	}
	std::cout << list.size() << std::endl;
	return 0;
}
0