結果

問題 No.202 1円玉投げ
ユーザー titiatitia
提出日時 2022-10-13 01:58:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 524 ms / 5,000 ms
コード長 519 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 80,748 KB
最終ジャッジ日時 2024-06-26 11:39:34
合計ジャッジ時間 10,120 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 510 ms
79,328 KB
testcase_01 AC 216 ms
80,748 KB
testcase_02 AC 39 ms
57,588 KB
testcase_03 AC 39 ms
58,208 KB
testcase_04 AC 39 ms
58,260 KB
testcase_05 AC 80 ms
77,200 KB
testcase_06 AC 214 ms
79,248 KB
testcase_07 AC 254 ms
80,336 KB
testcase_08 AC 258 ms
80,676 KB
testcase_09 AC 160 ms
78,404 KB
testcase_10 AC 115 ms
78,188 KB
testcase_11 AC 137 ms
77,640 KB
testcase_12 AC 148 ms
78,900 KB
testcase_13 AC 104 ms
77,328 KB
testcase_14 AC 79 ms
77,272 KB
testcase_15 AC 165 ms
78,840 KB
testcase_16 AC 366 ms
80,428 KB
testcase_17 AC 420 ms
80,344 KB
testcase_18 AC 421 ms
80,208 KB
testcase_19 AC 142 ms
78,516 KB
testcase_20 AC 205 ms
79,260 KB
testcase_21 AC 158 ms
78,992 KB
testcase_22 AC 53 ms
67,440 KB
testcase_23 AC 53 ms
66,812 KB
testcase_24 AC 63 ms
70,616 KB
testcase_25 AC 52 ms
66,024 KB
testcase_26 AC 57 ms
68,992 KB
testcase_27 AC 55 ms
67,660 KB
testcase_28 AC 65 ms
72,452 KB
testcase_29 AC 53 ms
66,676 KB
testcase_30 AC 61 ms
71,736 KB
testcase_31 AC 48 ms
63,968 KB
testcase_32 AC 60 ms
68,152 KB
testcase_33 AC 62 ms
70,376 KB
testcase_34 AC 62 ms
69,848 KB
testcase_35 AC 518 ms
79,328 KB
testcase_36 AC 524 ms
80,428 KB
testcase_37 AC 274 ms
80,192 KB
testcase_38 AC 470 ms
80,256 KB
testcase_39 AC 47 ms
63,404 KB
testcase_40 AC 46 ms
62,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
ANS=0

LIST=[[[] for j in range(100)] for i in range(100)]

for i in range(N):
    x,y=map(int,input().split())

    k=x//250
    l=y//250

    flag=1

    for s in [k,k-1,k+1]:
        for t in [l,l-1,l+1]:
            if 0<=s<100 and 0<=t<100:
                for z,w in LIST[s][t]:
                    if (x-z)**2+(y-w)**2<400:
                        flag=0

    if flag==1:
        ANS+=1
        LIST[k][l].append((x,y))

print(ANS)
    
                    
0