結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,270 ms
34,864 KB
testcase_01 AC 787 ms
47,832 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 60 ms
13,440 KB
testcase_06 AC 633 ms
40,220 KB
testcase_07 AC 748 ms
42,960 KB
testcase_08 AC 742 ms
43,180 KB
testcase_09 AC 372 ms
29,728 KB
testcase_10 AC 163 ms
19,252 KB
testcase_11 AC 314 ms
26,844 KB
testcase_12 AC 309 ms
27,264 KB
testcase_13 AC 176 ms
21,368 KB
testcase_14 AC 68 ms
13,568 KB
testcase_15 AC 367 ms
29,304 KB
testcase_16 AC 1,060 ms
36,112 KB
testcase_17 AC 1,059 ms
35,984 KB
testcase_18 AC 1,061 ms
35,984 KB
testcase_19 AC 345 ms
28,184 KB
testcase_20 AC 577 ms
37,720 KB
testcase_21 AC 339 ms
28,136 KB
testcase_22 AC 34 ms
11,008 KB
testcase_23 AC 35 ms
11,136 KB
testcase_24 AC 31 ms
10,880 KB
testcase_25 AC 32 ms
10,880 KB
testcase_26 AC 35 ms
11,008 KB
testcase_27 AC 33 ms
11,008 KB
testcase_28 AC 32 ms
10,752 KB
testcase_29 AC 32 ms
10,752 KB
testcase_30 AC 35 ms
10,880 KB
testcase_31 AC 33 ms
11,008 KB
testcase_32 AC 34 ms
11,264 KB
testcase_33 AC 33 ms
11,008 KB
testcase_34 AC 40 ms
11,008 KB
testcase_35 AC 1,177 ms
33,808 KB
testcase_36 AC 1,275 ms
34,908 KB
testcase_37 AC 819 ms
45,060 KB
testcase_38 AC 1,195 ms
34,336 KB
testcase_39 AC 27 ms
10,880 KB
testcase_40 AC 28 ms
10,880 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