結果

問題 No.202 1円玉投げ
ユーザー roiti46roiti46
提出日時 2015-05-04 21:03:37
言語 Python2
(2.7.18)
結果
AC  
実行時間 3,413 ms / 5,000 ms
コード長 708 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 24,192 KB
最終ジャッジ日時 2024-06-01 19:49:09
合計ジャッジ時間 38,672 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,406 ms
23,424 KB
testcase_01 AC 1,451 ms
24,192 KB
testcase_02 AC 21 ms
9,600 KB
testcase_03 AC 20 ms
9,728 KB
testcase_04 AC 20 ms
9,728 KB
testcase_05 AC 74 ms
10,752 KB
testcase_06 AC 1,093 ms
20,608 KB
testcase_07 AC 1,266 ms
21,632 KB
testcase_08 AC 1,332 ms
21,760 KB
testcase_09 AC 627 ms
17,152 KB
testcase_10 AC 236 ms
13,312 KB
testcase_11 AC 495 ms
15,872 KB
testcase_12 AC 504 ms
16,256 KB
testcase_13 AC 263 ms
13,568 KB
testcase_14 AC 85 ms
10,880 KB
testcase_15 AC 590 ms
17,024 KB
testcase_16 AC 2,678 ms
23,296 KB
testcase_17 AC 2,671 ms
23,296 KB
testcase_18 AC 2,674 ms
23,168 KB
testcase_19 AC 555 ms
16,640 KB
testcase_20 AC 959 ms
19,968 KB
testcase_21 AC 541 ms
16,512 KB
testcase_22 AC 28 ms
9,984 KB
testcase_23 AC 29 ms
9,984 KB
testcase_24 AC 27 ms
9,600 KB
testcase_25 AC 27 ms
9,728 KB
testcase_26 AC 29 ms
9,856 KB
testcase_27 AC 30 ms
9,856 KB
testcase_28 AC 28 ms
9,600 KB
testcase_29 AC 27 ms
9,728 KB
testcase_30 AC 31 ms
9,856 KB
testcase_31 AC 27 ms
9,728 KB
testcase_32 AC 29 ms
9,984 KB
testcase_33 AC 34 ms
9,728 KB
testcase_34 AC 52 ms
9,856 KB
testcase_35 AC 3,380 ms
23,040 KB
testcase_36 AC 3,413 ms
23,296 KB
testcase_37 AC 1,447 ms
22,528 KB
testcase_38 AC 3,355 ms
23,296 KB
testcase_39 AC 23 ms
9,728 KB
testcase_40 AC 22 ms
9,856 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