結果

問題 No.202 1円玉投げ
ユーザー rpy3cpprpy3cpp
提出日時 2015-05-04 00:05:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,403 ms / 5,000 ms
コード長 990 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 47,812 KB
最終ジャッジ日時 2024-12-22 06:45:18
合計ジャッジ時間 20,388 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,388 ms
34,732 KB
testcase_01 AC 863 ms
47,812 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 72 ms
13,056 KB
testcase_06 AC 740 ms
40,216 KB
testcase_07 AC 836 ms
42,828 KB
testcase_08 AC 840 ms
43,256 KB
testcase_09 AC 434 ms
29,848 KB
testcase_10 AC 181 ms
19,000 KB
testcase_11 AC 340 ms
26,592 KB
testcase_12 AC 355 ms
27,392 KB
testcase_13 AC 199 ms
21,108 KB
testcase_14 AC 75 ms
13,696 KB
testcase_15 AC 410 ms
29,376 KB
testcase_16 AC 1,151 ms
36,108 KB
testcase_17 AC 1,190 ms
35,732 KB
testcase_18 AC 1,137 ms
35,984 KB
testcase_19 AC 383 ms
28,312 KB
testcase_20 AC 616 ms
37,840 KB
testcase_21 AC 372 ms
28,244 KB
testcase_22 AC 39 ms
10,880 KB
testcase_23 AC 41 ms
10,880 KB
testcase_24 AC 39 ms
10,624 KB
testcase_25 AC 39 ms
10,752 KB
testcase_26 AC 38 ms
11,008 KB
testcase_27 AC 37 ms
11,008 KB
testcase_28 AC 34 ms
10,624 KB
testcase_29 AC 36 ms
10,624 KB
testcase_30 AC 37 ms
10,880 KB
testcase_31 AC 35 ms
10,880 KB
testcase_32 AC 39 ms
11,136 KB
testcase_33 AC 37 ms
10,752 KB
testcase_34 AC 44 ms
11,008 KB
testcase_35 AC 1,294 ms
33,916 KB
testcase_36 AC 1,403 ms
34,904 KB
testcase_37 AC 892 ms
44,808 KB
testcase_38 AC 1,296 ms
34,340 KB
testcase_39 AC 32 ms
10,880 KB
testcase_40 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

def read_data():
    N = int(input())
    XY = []
    for i in range(N):
        x, y = map(int, input().split())
        XY.append((x, y))
    return N, XY

def solve(N, XY, r = 10, size = 50):
    cells = collections.defaultdict(list)
    count = 0
    threshold = 4 * r * r
    for x, y in XY:
        if not overlap(x, y, cells, size, threshold):
            count += 1
            register_cell(x, y, cells, size)
    return count

def overlap(x, y, cells, size, threshold):
    xc = x // size
    yc = y // size
    for xr in [xc-1, xc, xc+1]:
        for yr in [yc-1, yc, yc+1]:
            if (xr, yr) in cells:
                for xx, yy in cells[xr, yr]:
                    if (x - xx) ** 2 + (y - yy) ** 2 < threshold:
                        return True
    return False

def register_cell(x, y, cells, size):
    xc = x // size
    yc = y // size
    cells[xc, yc].append((x, y))

if __name__ == "__main__":
    N, XY = read_data()
    print(solve(N, XY))
0