結果

問題 No.202 1円玉投げ
ユーザー ああいいああいい
提出日時 2022-03-17 23:36:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 404 ms / 5,000 ms
コード長 400 bytes
コンパイル時間 426 ms
コンパイル使用メモリ 82,896 KB
実行使用メモリ 93,156 KB
最終ジャッジ日時 2024-12-22 12:13:04
合計ジャッジ時間 10,170 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 404 ms
92,116 KB
testcase_01 AC 377 ms
92,876 KB
testcase_02 AC 41 ms
51,456 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 42 ms
51,840 KB
testcase_05 AC 99 ms
76,416 KB
testcase_06 AC 310 ms
88,140 KB
testcase_07 AC 366 ms
90,360 KB
testcase_08 AC 364 ms
90,672 KB
testcase_09 AC 227 ms
84,100 KB
testcase_10 AC 173 ms
80,472 KB
testcase_11 AC 212 ms
82,780 KB
testcase_12 AC 219 ms
83,384 KB
testcase_13 AC 149 ms
80,200 KB
testcase_14 AC 107 ms
76,784 KB
testcase_15 AC 245 ms
85,292 KB
testcase_16 AC 346 ms
92,080 KB
testcase_17 AC 342 ms
92,464 KB
testcase_18 AC 352 ms
92,340 KB
testcase_19 AC 229 ms
84,376 KB
testcase_20 AC 293 ms
88,076 KB
testcase_21 AC 212 ms
83,000 KB
testcase_22 AC 60 ms
65,920 KB
testcase_23 AC 62 ms
66,304 KB
testcase_24 AC 72 ms
69,888 KB
testcase_25 AC 69 ms
69,504 KB
testcase_26 AC 62 ms
66,176 KB
testcase_27 AC 62 ms
66,304 KB
testcase_28 AC 74 ms
70,656 KB
testcase_29 AC 70 ms
69,376 KB
testcase_30 AC 58 ms
66,048 KB
testcase_31 AC 60 ms
65,536 KB
testcase_32 AC 72 ms
70,912 KB
testcase_33 AC 73 ms
71,168 KB
testcase_34 AC 63 ms
67,200 KB
testcase_35 AC 333 ms
92,244 KB
testcase_36 AC 368 ms
93,156 KB
testcase_37 AC 358 ms
91,452 KB
testcase_38 AC 361 ms
91,848 KB
testcase_39 AC 50 ms
61,056 KB
testcase_40 AC 51 ms
60,544 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