結果

問題 No.202 1円玉投げ
ユーザー しらっ亭しらっ亭
提出日時 2015-06-26 01:50:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,354 ms / 5,000 ms
コード長 759 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 311,852 KB
最終ジャッジ日時 2024-06-01 20:30:50
合計ジャッジ時間 40,245 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,147 ms
195,968 KB
testcase_01 AC 2,339 ms
311,852 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 28 ms
10,880 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 127 ms
29,184 KB
testcase_06 AC 1,981 ms
231,552 KB
testcase_07 AC 2,231 ms
279,408 KB
testcase_08 AC 2,211 ms
279,772 KB
testcase_09 AC 1,176 ms
161,604 KB
testcase_10 AC 478 ms
78,044 KB
testcase_11 AC 1,011 ms
145,164 KB
testcase_12 AC 1,037 ms
145,312 KB
testcase_13 AC 547 ms
83,760 KB
testcase_14 AC 156 ms
32,072 KB
testcase_15 AC 1,156 ms
157,404 KB
testcase_16 AC 2,069 ms
212,060 KB
testcase_17 AC 2,073 ms
212,052 KB
testcase_18 AC 2,052 ms
211,924 KB
testcase_19 AC 1,108 ms
150,056 KB
testcase_20 AC 1,670 ms
212,772 KB
testcase_21 AC 1,105 ms
149,044 KB
testcase_22 AC 43 ms
13,056 KB
testcase_23 AC 44 ms
13,184 KB
testcase_24 AC 36 ms
11,008 KB
testcase_25 AC 37 ms
11,136 KB
testcase_26 AC 43 ms
12,800 KB
testcase_27 AC 45 ms
13,184 KB
testcase_28 AC 36 ms
11,136 KB
testcase_29 AC 37 ms
11,008 KB
testcase_30 AC 47 ms
13,440 KB
testcase_31 AC 36 ms
10,880 KB
testcase_32 AC 46 ms
13,824 KB
testcase_33 AC 40 ms
12,288 KB
testcase_34 AC 42 ms
12,160 KB
testcase_35 AC 2,005 ms
181,080 KB
testcase_36 AC 2,116 ms
193,944 KB
testcase_37 AC 2,354 ms
289,036 KB
testcase_38 AC 2,061 ms
194,244 KB
testcase_39 AC 34 ms
11,392 KB
testcase_40 AC 32 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


def lap(bin, x, y, dx, dy):

    cs = []
    for xx in [-1, 0, 1]:
        for yy in [-1, 0, 1]:
            cs.extend(bin[dx + xx, dy + yy])

    for bx, by in cs:
        if (bx - x) ** 2 + (by - y) ** 2 < 400:
            return True

    for xx in [-1, 0, 1]:
        for yy in [-1, 0, 1]:
            bin[dx + xx, dy + yy].append((x, y))

    return False


def solve(XY):
    bin = defaultdict(list)

    count = 0
    for x, y in XY:
        dx = x // 10
        dy = y // 10
        if not lap(bin, x, y, dx, dy):
            count += 1

    return count


def main():
    N = int(input())
    XY = [list(map(int, input().split())) for i in range(N)]

    print(solve(XY))


if __name__ == '__main__':
    main()
0