結果

問題 No.202 1円玉投げ
ユーザー yuyyuyuyuyyuyu
提出日時 2015-08-07 23:10:35
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 395 ms / 5,000 ms
コード長 622 bytes
コンパイル時間 771 ms
コンパイル使用メモリ 75,944 KB
実行使用メモリ 91,776 KB
最終ジャッジ日時 2024-12-22 09:52:32
合計ジャッジ時間 11,268 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 297 ms
88,104 KB
testcase_01 AC 368 ms
91,776 KB
testcase_02 AC 88 ms
78,732 KB
testcase_03 AC 87 ms
79,508 KB
testcase_04 AC 89 ms
79,264 KB
testcase_05 AC 140 ms
83,968 KB
testcase_06 AC 360 ms
89,796 KB
testcase_07 AC 395 ms
90,624 KB
testcase_08 AC 384 ms
90,392 KB
testcase_09 AC 271 ms
87,676 KB
testcase_10 AC 182 ms
85,256 KB
testcase_11 AC 241 ms
87,304 KB
testcase_12 AC 249 ms
87,808 KB
testcase_13 AC 193 ms
85,136 KB
testcase_14 AC 142 ms
83,832 KB
testcase_15 AC 258 ms
87,808 KB
testcase_16 AC 267 ms
88,796 KB
testcase_17 AC 291 ms
88,864 KB
testcase_18 AC 299 ms
88,480 KB
testcase_19 AC 250 ms
87,552 KB
testcase_20 AC 318 ms
88,968 KB
testcase_21 AC 253 ms
87,736 KB
testcase_22 AC 117 ms
80,000 KB
testcase_23 AC 115 ms
79,744 KB
testcase_24 AC 118 ms
80,000 KB
testcase_25 AC 113 ms
79,624 KB
testcase_26 AC 113 ms
79,644 KB
testcase_27 AC 113 ms
79,500 KB
testcase_28 AC 124 ms
79,872 KB
testcase_29 AC 113 ms
79,520 KB
testcase_30 AC 116 ms
79,508 KB
testcase_31 AC 111 ms
79,396 KB
testcase_32 AC 107 ms
80,000 KB
testcase_33 AC 122 ms
79,616 KB
testcase_34 AC 118 ms
79,756 KB
testcase_35 AC 267 ms
87,616 KB
testcase_36 AC 289 ms
88,396 KB
testcase_37 AC 384 ms
90,752 KB
testcase_38 AC 266 ms
87,756 KB
testcase_39 AC 96 ms
78,872 KB
testcase_40 AC 93 ms
78,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

size=50
def dist(ax,ay,bx,by):
    return (ax-bx)**2+(ay-by)**2
def check(x,y):
    for dy in xrange(-1,2):
        for dx in xrange(-1,2):
            bx,by=x/size+dx,y/size+dy
            if 0<=bx<20000/size+1 and 0<=by<20000/size+1:
                for cx,cy in block[by][bx]:
                    if dist(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 loop 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