結果

問題 No.202 1円玉投げ
ユーザー nebukuro09nebukuro09
提出日時 2016-10-04 13:19:06
言語 PyPy2
(7.3.15)
結果
MLE  
実行時間 -
コード長 286 bytes
コンパイル時間 1,761 ms
コンパイル使用メモリ 76,736 KB
実行使用メモリ 1,657,728 KB
最終ジャッジ日時 2024-12-22 10:37:17
合計ジャッジ時間 125,389 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 AC 143 ms
84,940 KB
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 AC 359 ms
162,216 KB
testcase_23 AC 362 ms
162,260 KB
testcase_24 AC 114 ms
82,824 KB
testcase_25 AC 105 ms
83,016 KB
testcase_26 AC 293 ms
162,164 KB
testcase_27 AC 305 ms
162,252 KB
testcase_28 AC 111 ms
83,004 KB
testcase_29 AC 106 ms
82,748 KB
testcase_30 AC 351 ms
182,784 KB
testcase_31 AC 95 ms
78,252 KB
testcase_32 AC 420 ms
217,080 KB
testcase_33 AC 228 ms
151,768 KB
testcase_34 AC 293 ms
145,760 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 MLE -
testcase_38 TLE -
testcase_39 AC 160 ms
113,876 KB
testcase_40 AC 113 ms
98,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
s = set()
ans = 0
shuuhen = [(i, j) for i in xrange(-20, 21) for j in xrange(-20, 21) if i*i+j*j<400]
for i in xrange(N):
    x, y = map(int, raw_input().split())
    if (x, y) in s:
        continue
    for j, k in shuuhen:
        s.add((x+j, y+k))
    ans += 1
print ans
0