結果

問題 No.202 1円玉投げ
ユーザー tookunn_1213tookunn_1213
提出日時 2015-05-04 00:11:32
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 369 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 33,100 KB
最終ジャッジ日時 2024-12-22 06:57:18
合計ジャッジ時間 148,712 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 10 ms
13,312 KB
testcase_03 AC 9 ms
29,412 KB
testcase_04 AC 9 ms
31,024 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 287 ms
6,400 KB
testcase_23 AC 296 ms
6,400 KB
testcase_24 AC 61 ms
6,272 KB
testcase_25 AC 57 ms
6,400 KB
testcase_26 AC 287 ms
6,400 KB
testcase_27 AC 290 ms
6,272 KB
testcase_28 AC 58 ms
6,400 KB
testcase_29 AC 59 ms
6,400 KB
testcase_30 AC 303 ms
6,400 KB
testcase_31 AC 46 ms
6,272 KB
testcase_32 AC 300 ms
6,272 KB
testcase_33 AC 196 ms
6,400 KB
testcase_34 AC 304 ms
6,400 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 AC 27 ms
6,144 KB
testcase_40 AC 15 ms
33,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())
circle = [map(int,raw_input().split()) for i in range(N)]
exist = [True for i in range(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
print exist.count(True)
0