結果

問題 No.202 1円玉投げ
ユーザー tookunn_1213tookunn_1213
提出日時 2015-05-04 00:10:37
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 368 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 33,832 KB
最終ジャッジ日時 2024-12-22 06:49:43
合計ジャッジ時間 149,456 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 12 ms
14,368 KB
testcase_03 AC 11 ms
13,640 KB
testcase_04 AC 11 ms
30,080 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 335 ms
33,432 KB
testcase_23 AC 331 ms
33,744 KB
testcase_24 AC 67 ms
13,636 KB
testcase_25 AC 68 ms
6,816 KB
testcase_26 AC 332 ms
6,816 KB
testcase_27 AC 330 ms
6,820 KB
testcase_28 AC 67 ms
6,820 KB
testcase_29 AC 67 ms
6,816 KB
testcase_30 AC 342 ms
6,820 KB
testcase_31 AC 52 ms
6,820 KB
testcase_32 AC 339 ms
6,820 KB
testcase_33 WA -
testcase_34 AC 342 ms
6,820 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 AC 30 ms
6,816 KB
testcase_40 AC 20 ms
33,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())
circle = [map(int,raw_input().split()) for i in range(N)]
exist = [True for i in range(N)]
n = N
for i in range(N):
	for j in range(0,i):
		if not exist[j]:continue
		if ((circle[i][0] - circle[j][0])*(circle[i][0] - circle[j][0])) + ((circle[i][1] - circle[j][1])*(circle[i][1] - circle[j][1])) >= 400:continue
		exist[i] = False
		n -= 1
print n
0