結果

問題 No.202 1円玉投げ
ユーザー ああいいああいい
提出日時 2022-03-17 23:36:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 320 ms / 5,000 ms
コード長 400 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 92,876 KB
最終ジャッジ日時 2024-06-01 21:47:59
合計ジャッジ時間 8,038 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 320 ms
91,872 KB
testcase_01 AC 310 ms
92,876 KB
testcase_02 AC 34 ms
52,312 KB
testcase_03 AC 33 ms
52,948 KB
testcase_04 AC 33 ms
52,680 KB
testcase_05 AC 83 ms
76,672 KB
testcase_06 AC 264 ms
88,524 KB
testcase_07 AC 301 ms
90,408 KB
testcase_08 AC 306 ms
90,924 KB
testcase_09 AC 199 ms
85,188 KB
testcase_10 AC 138 ms
80,560 KB
testcase_11 AC 175 ms
82,816 KB
testcase_12 AC 181 ms
83,380 KB
testcase_13 AC 129 ms
80,088 KB
testcase_14 AC 84 ms
77,120 KB
testcase_15 AC 198 ms
85,164 KB
testcase_16 AC 272 ms
92,204 KB
testcase_17 AC 280 ms
92,324 KB
testcase_18 AC 287 ms
91,996 KB
testcase_19 AC 187 ms
83,988 KB
testcase_20 AC 252 ms
88,596 KB
testcase_21 AC 184 ms
83,252 KB
testcase_22 AC 53 ms
67,008 KB
testcase_23 AC 53 ms
67,320 KB
testcase_24 AC 61 ms
70,992 KB
testcase_25 AC 58 ms
71,400 KB
testcase_26 AC 55 ms
67,660 KB
testcase_27 AC 50 ms
66,368 KB
testcase_28 AC 62 ms
70,304 KB
testcase_29 AC 58 ms
70,228 KB
testcase_30 AC 52 ms
67,116 KB
testcase_31 AC 48 ms
65,892 KB
testcase_32 AC 61 ms
70,960 KB
testcase_33 AC 64 ms
71,636 KB
testcase_34 AC 52 ms
68,416 KB
testcase_35 AC 306 ms
91,864 KB
testcase_36 AC 317 ms
92,764 KB
testcase_37 AC 311 ms
91,584 KB
testcase_38 AC 299 ms
91,856 KB
testcase_39 AC 44 ms
62,244 KB
testcase_40 AC 42 ms
62,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

d = dict()
for _ in range(N):
    x,y = map(int,input().split())
    s = x // 10
    t = y // 10
    flag = True
    for i in range(-2,3):
        for j in range(-2,3):
            if (s+i,t+j) in d:
                u,v = d[(s+i,t+j)]
                if (u-x) ** 2 + (v - y) ** 2 < 400:
                    flag = False
    if flag:
        d[(s,t)] = (x,y)
print(len(d))
#print(d)
0