結果

問題 No.202 1円玉投げ
ユーザー rpy3cpprpy3cpp
提出日時 2015-05-03 23:52:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,196 ms / 5,000 ms
コード長 1,027 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 48,556 KB
最終ジャッジ日時 2024-06-01 19:09:05
合計ジャッジ時間 16,869 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,167 ms
35,224 KB
testcase_01 AC 678 ms
48,556 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 58 ms
13,312 KB
testcase_06 AC 579 ms
41,088 KB
testcase_07 AC 659 ms
44,096 KB
testcase_08 AC 669 ms
44,304 KB
testcase_09 AC 332 ms
30,028 KB
testcase_10 AC 137 ms
19,396 KB
testcase_11 AC 263 ms
26,712 KB
testcase_12 AC 269 ms
27,688 KB
testcase_13 AC 152 ms
21,380 KB
testcase_14 AC 63 ms
13,696 KB
testcase_15 AC 317 ms
29,672 KB
testcase_16 AC 934 ms
36,752 KB
testcase_17 AC 938 ms
36,544 KB
testcase_18 AC 932 ms
36,476 KB
testcase_19 AC 292 ms
28,864 KB
testcase_20 AC 497 ms
37,576 KB
testcase_21 AC 291 ms
28,564 KB
testcase_22 AC 36 ms
10,880 KB
testcase_23 AC 37 ms
10,880 KB
testcase_24 AC 34 ms
10,880 KB
testcase_25 AC 34 ms
10,880 KB
testcase_26 AC 36 ms
11,008 KB
testcase_27 AC 36 ms
11,008 KB
testcase_28 AC 34 ms
10,880 KB
testcase_29 AC 34 ms
10,880 KB
testcase_30 AC 36 ms
11,008 KB
testcase_31 AC 33 ms
10,880 KB
testcase_32 AC 35 ms
11,136 KB
testcase_33 AC 36 ms
10,880 KB
testcase_34 AC 43 ms
11,008 KB
testcase_35 AC 1,077 ms
34,236 KB
testcase_36 AC 1,196 ms
35,188 KB
testcase_37 AC 734 ms
46,060 KB
testcase_38 AC 1,079 ms
34,528 KB
testcase_39 AC 32 ms
10,624 KB
testcase_40 AC 32 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import collections

def read_data():
    N = int(input())
    lines = sys.stdin.readlines()
    XY = []
    for xy in lines:
        x, y = map(int, xy.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