結果

問題 No.202 1円玉投げ
ユーザー roiti46roiti46
提出日時 2015-05-04 21:02:56
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,699 ms / 5,000 ms
コード長 707 bytes
コンパイル時間 457 ms
コンパイル使用メモリ 7,076 KB
実行使用メモリ 36,736 KB
最終ジャッジ日時 2024-12-22 08:29:01
合計ジャッジ時間 28,022 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,699 ms
34,432 KB
testcase_01 AC 1,281 ms
36,736 KB
testcase_02 AC 56 ms
20,352 KB
testcase_03 AC 57 ms
20,224 KB
testcase_04 AC 55 ms
20,224 KB
testcase_05 AC 121 ms
21,120 KB
testcase_06 AC 1,087 ms
32,384 KB
testcase_07 AC 1,264 ms
33,664 KB
testcase_08 AC 1,199 ms
33,920 KB
testcase_09 AC 679 ms
28,416 KB
testcase_10 AC 311 ms
23,808 KB
testcase_11 AC 569 ms
27,008 KB
testcase_12 AC 570 ms
27,136 KB
testcase_13 AC 348 ms
24,192 KB
testcase_14 AC 136 ms
21,376 KB
testcase_15 AC 664 ms
28,288 KB
testcase_16 AC 1,486 ms
34,176 KB
testcase_17 AC 1,454 ms
34,304 KB
testcase_18 AC 1,471 ms
34,304 KB
testcase_19 AC 608 ms
27,648 KB
testcase_20 AC 941 ms
31,360 KB
testcase_21 AC 608 ms
27,648 KB
testcase_22 AC 64 ms
20,224 KB
testcase_23 AC 68 ms
20,352 KB
testcase_24 AC 65 ms
20,224 KB
testcase_25 AC 65 ms
20,352 KB
testcase_26 AC 64 ms
20,480 KB
testcase_27 AC 66 ms
20,480 KB
testcase_28 AC 64 ms
20,224 KB
testcase_29 AC 62 ms
20,352 KB
testcase_30 AC 64 ms
20,352 KB
testcase_31 AC 61 ms
20,096 KB
testcase_32 AC 68 ms
20,352 KB
testcase_33 AC 64 ms
20,224 KB
testcase_34 AC 73 ms
20,352 KB
testcase_35 AC 1,644 ms
34,176 KB
testcase_36 AC 1,656 ms
34,304 KB
testcase_37 AC 1,284 ms
34,688 KB
testcase_38 AC 1,639 ms
34,432 KB
testcase_39 AC 58 ms
20,224 KB
testcase_40 AC 57 ms
20,096 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