結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 265 ms
88,396 KB
testcase_01 AC 296 ms
91,648 KB
testcase_02 AC 82 ms
79,360 KB
testcase_03 AC 77 ms
79,744 KB
testcase_04 AC 78 ms
79,468 KB
testcase_05 AC 127 ms
84,224 KB
testcase_06 AC 298 ms
90,312 KB
testcase_07 AC 303 ms
91,136 KB
testcase_08 AC 295 ms
91,136 KB
testcase_09 AC 215 ms
88,100 KB
testcase_10 AC 157 ms
85,760 KB
testcase_11 AC 211 ms
87,832 KB
testcase_12 AC 200 ms
87,728 KB
testcase_13 AC 158 ms
85,760 KB
testcase_14 AC 119 ms
84,256 KB
testcase_15 AC 214 ms
87,936 KB
testcase_16 AC 228 ms
89,076 KB
testcase_17 AC 245 ms
88,860 KB
testcase_18 AC 257 ms
88,732 KB
testcase_19 AC 208 ms
87,936 KB
testcase_20 AC 255 ms
89,600 KB
testcase_21 AC 209 ms
87,852 KB
testcase_22 AC 97 ms
80,256 KB
testcase_23 AC 97 ms
80,164 KB
testcase_24 AC 107 ms
80,000 KB
testcase_25 AC 98 ms
80,256 KB
testcase_26 AC 96 ms
80,296 KB
testcase_27 AC 95 ms
80,000 KB
testcase_28 AC 102 ms
80,000 KB
testcase_29 AC 92 ms
80,128 KB
testcase_30 AC 95 ms
80,284 KB
testcase_31 AC 89 ms
80,152 KB
testcase_32 AC 90 ms
80,128 KB
testcase_33 AC 100 ms
80,128 KB
testcase_34 AC 102 ms
80,168 KB
testcase_35 AC 217 ms
88,128 KB
testcase_36 AC 228 ms
88,796 KB
testcase_37 AC 319 ms
91,392 KB
testcase_38 AC 229 ms
87,876 KB
testcase_39 AC 85 ms
79,360 KB
testcase_40 AC 82 ms
79,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

size=50
def dist(ax,ay,bx,by):#distance**2
    return (ax-bx)**2+(ay-by)**2
def check(x,y):#(x,y) intersect some circle?
    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