結果

問題 No.202 1円玉投げ
ユーザー しらっ亭しらっ亭
提出日時 2015-06-26 02:07:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 795 ms / 5,000 ms
コード長 1,135 bytes
コンパイル時間 428 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 272,144 KB
最終ジャッジ日時 2024-06-01 20:31:25
合計ジャッジ時間 18,435 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 536 ms
244,828 KB
testcase_01 AC 591 ms
272,144 KB
testcase_02 AC 209 ms
181,728 KB
testcase_03 AC 212 ms
181,708 KB
testcase_04 AC 208 ms
181,644 KB
testcase_05 AC 263 ms
190,676 KB
testcase_06 AC 704 ms
256,384 KB
testcase_07 AC 759 ms
262,536 KB
testcase_08 AC 785 ms
268,180 KB
testcase_09 AC 524 ms
239,396 KB
testcase_10 AC 345 ms
214,168 KB
testcase_11 AC 468 ms
233,616 KB
testcase_12 AC 483 ms
234,360 KB
testcase_13 AC 334 ms
212,248 KB
testcase_14 AC 288 ms
208,268 KB
testcase_15 AC 520 ms
239,276 KB
testcase_16 AC 471 ms
256,880 KB
testcase_17 AC 495 ms
250,060 KB
testcase_18 AC 492 ms
249,852 KB
testcase_19 AC 484 ms
233,144 KB
testcase_20 AC 671 ms
252,788 KB
testcase_21 AC 512 ms
239,704 KB
testcase_22 AC 252 ms
199,712 KB
testcase_23 AC 251 ms
199,620 KB
testcase_24 AC 242 ms
199,416 KB
testcase_25 AC 242 ms
199,492 KB
testcase_26 AC 255 ms
199,352 KB
testcase_27 AC 251 ms
200,044 KB
testcase_28 AC 247 ms
199,908 KB
testcase_29 AC 245 ms
199,620 KB
testcase_30 AC 250 ms
199,908 KB
testcase_31 AC 248 ms
199,732 KB
testcase_32 AC 248 ms
199,792 KB
testcase_33 AC 251 ms
199,716 KB
testcase_34 AC 252 ms
199,804 KB
testcase_35 AC 465 ms
241,152 KB
testcase_36 AC 527 ms
240,812 KB
testcase_37 AC 795 ms
267,348 KB
testcase_38 AC 464 ms
240,712 KB
testcase_39 AC 214 ms
180,844 KB
testcase_40 AC 211 ms
180,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    cs = []

    cs.extend(bin[dx][dy])
    cs.extend(bin[dx][dy + 1])
    cs.extend(bin[dx][dy + 2])
    cs.extend(bin[dx + 1][dy])
    cs.extend(bin[dx + 1][dy + 1])
    cs.extend(bin[dx + 1][dy + 2])
    cs.extend(bin[dx + 2][dy])
    cs.extend(bin[dx + 2][dy + 1])
    cs.extend(bin[dx + 2][dy + 2])

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

    t = (x, y)
    bin[dx][dy].append(t)
    bin[dx][dy + 1].append(t)
    bin[dx][dy + 2].append(t)
    bin[dx + 1][dy].append(t)
    bin[dx + 1][dy + 1].append(t)
    bin[dx + 1][dy + 2].append(t)
    bin[dx + 2][dy].append(t)
    bin[dx + 2][dy + 1].append(t)
    bin[dx + 2][dy + 2].append(t)

    return False


def solve(XY):
    bin = [[[] for j in range(2003)] for i in range(2003)]

    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