結果

問題 No.202 1円玉投げ
ユーザー roiti46roiti46
提出日時 2015-05-04 21:03:37
言語 Python2
(2.7.18)
結果
AC  
実行時間 3,651 ms / 5,000 ms
コード長 708 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 24,192 KB
最終ジャッジ日時 2024-12-22 08:29:45
合計ジャッジ時間 41,250 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,651 ms
23,424 KB
testcase_01 AC 1,550 ms
24,192 KB
testcase_02 AC 22 ms
9,728 KB
testcase_03 AC 22 ms
9,600 KB
testcase_04 AC 23 ms
9,600 KB
testcase_05 AC 80 ms
10,752 KB
testcase_06 AC 1,211 ms
20,736 KB
testcase_07 AC 1,364 ms
21,632 KB
testcase_08 AC 1,425 ms
21,760 KB
testcase_09 AC 695 ms
17,152 KB
testcase_10 AC 267 ms
13,056 KB
testcase_11 AC 563 ms
16,000 KB
testcase_12 AC 568 ms
16,000 KB
testcase_13 AC 290 ms
13,440 KB
testcase_14 AC 87 ms
10,752 KB
testcase_15 AC 652 ms
17,024 KB
testcase_16 AC 2,841 ms
23,296 KB
testcase_17 AC 2,832 ms
23,168 KB
testcase_18 AC 2,838 ms
23,296 KB
testcase_19 AC 604 ms
16,512 KB
testcase_20 AC 1,050 ms
19,584 KB
testcase_21 AC 590 ms
16,384 KB
testcase_22 AC 32 ms
9,600 KB
testcase_23 AC 32 ms
9,728 KB
testcase_24 AC 28 ms
9,472 KB
testcase_25 AC 28 ms
9,600 KB
testcase_26 AC 30 ms
9,728 KB
testcase_27 AC 32 ms
9,856 KB
testcase_28 AC 29 ms
9,600 KB
testcase_29 AC 28 ms
9,600 KB
testcase_30 AC 33 ms
9,856 KB
testcase_31 AC 28 ms
9,728 KB
testcase_32 AC 30 ms
9,856 KB
testcase_33 AC 36 ms
9,600 KB
testcase_34 AC 55 ms
9,728 KB
testcase_35 AC 3,578 ms
22,912 KB
testcase_36 AC 3,586 ms
23,168 KB
testcase_37 AC 1,514 ms
22,400 KB
testcase_38 AC 3,585 ms
23,168 KB
testcase_39 AC 24 ms
9,728 KB
testcase_40 AC 23 ms
9,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

size = 100
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