結果

問題 No.202 1円玉投げ
ユーザー yuyyuyuyuyyuyu
提出日時 2015-08-08 00:46:13
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 305 ms / 5,000 ms
コード長 628 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 76,948 KB
実行使用メモリ 92,416 KB
最終ジャッジ日時 2024-12-22 09:53:29
合計ジャッジ時間 8,666 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 266 ms
88,652 KB
testcase_01 AC 294 ms
92,416 KB
testcase_02 AC 74 ms
79,392 KB
testcase_03 AC 76 ms
79,628 KB
testcase_04 AC 74 ms
79,376 KB
testcase_05 AC 115 ms
84,096 KB
testcase_06 AC 274 ms
89,676 KB
testcase_07 AC 297 ms
91,136 KB
testcase_08 AC 305 ms
91,008 KB
testcase_09 AC 213 ms
88,348 KB
testcase_10 AC 161 ms
85,676 KB
testcase_11 AC 200 ms
87,808 KB
testcase_12 AC 205 ms
87,552 KB
testcase_13 AC 154 ms
86,016 KB
testcase_14 AC 126 ms
84,152 KB
testcase_15 AC 203 ms
87,724 KB
testcase_16 AC 250 ms
89,136 KB
testcase_17 AC 221 ms
89,084 KB
testcase_18 AC 218 ms
89,216 KB
testcase_19 AC 202 ms
87,680 KB
testcase_20 AC 252 ms
89,472 KB
testcase_21 AC 203 ms
87,592 KB
testcase_22 AC 96 ms
80,168 KB
testcase_23 AC 104 ms
80,136 KB
testcase_24 AC 119 ms
79,904 KB
testcase_25 AC 93 ms
80,000 KB
testcase_26 AC 96 ms
80,000 KB
testcase_27 AC 101 ms
80,188 KB
testcase_28 AC 101 ms
80,000 KB
testcase_29 AC 97 ms
80,128 KB
testcase_30 AC 101 ms
80,128 KB
testcase_31 AC 96 ms
80,128 KB
testcase_32 AC 93 ms
79,752 KB
testcase_33 AC 103 ms
80,000 KB
testcase_34 AC 105 ms
80,300 KB
testcase_35 AC 226 ms
88,024 KB
testcase_36 AC 233 ms
88,348 KB
testcase_37 AC 299 ms
91,008 KB
testcase_38 AC 221 ms
88,152 KB
testcase_39 AC 85 ms
79,872 KB
testcase_40 AC 86 ms
79,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

size=50
def distance(ax,ay,bx,by):
    return (ax-bx)**2+(ay-by)**2
def check(x,y):
    for dx in xrange(-1,2):
        for dy in xrange(-1,2):
            bx,by=x/size+dx,y/size+dy
            if 0<=bx<=20000/size and 0<=by<=20000/size:
                for cx,cy in block[by][bx]:
                    if 0<=distance(x,y,cx,cy)<400:
                        return False
    return True
N=int(raw_input())
block=[[[] for i in xrange(20000/size+1)] for j in xrange(20000/size+1)]
ans=0
for _ in xrange(N):
    x,y=map(int,raw_input().split())
    if check(x,y):
        ans+=1
        block[y/size][x/size].append((x,y))
print ans
0