結果

問題 No.202 1円玉投げ
ユーザー nebukuro09nebukuro09
提出日時 2016-10-04 13:18:51
言語 Python2
(2.7.18)
結果
MLE  
実行時間 -
コード長 286 bytes
コンパイル時間 483 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 1,494,676 KB
最終ジャッジ日時 2024-12-22 10:34:55
合計ジャッジ時間 135,872 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 AC 15 ms
11,940 KB
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 1,048 ms
133,940 KB
testcase_23 AC 1,106 ms
144,964 KB
testcase_24 AC 48 ms
13,036 KB
testcase_25 AC 45 ms
13,276 KB
testcase_26 AC 939 ms
133,808 KB
testcase_27 AC 1,022 ms
144,964 KB
testcase_28 AC 47 ms
13,036 KB
testcase_29 AC 46 ms
13,280 KB
testcase_30 AC 1,220 ms
159,104 KB
testcase_31 AC 14 ms
6,528 KB
testcase_32 AC 1,430 ms
197,196 KB
testcase_33 AC 461 ms
71,876 KB
testcase_34 AC 770 ms
71,220 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 MLE -
testcase_38 TLE -
testcase_39 AC 244 ms
36,764 KB
testcase_40 MLE -
権限があれば一括ダウンロードができます

ソースコード

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