結果

問題 No.202 1円玉投げ
ユーザー しらっ亭しらっ亭
提出日時 2015-06-26 03:12:09
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 673 bytes
コンパイル時間 673 ms
コンパイル使用メモリ 76,432 KB
実行使用メモリ 128,704 KB
最終ジャッジ日時 2024-06-01 20:31:03
合計ジャッジ時間 11,674 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 267 ms
128,704 KB
testcase_01 AC 319 ms
127,744 KB
testcase_02 AC 109 ms
101,152 KB
testcase_03 WA -
testcase_04 AC 108 ms
101,388 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 234 ms
127,904 KB
testcase_17 AC 241 ms
127,672 KB
testcase_18 AC 241 ms
127,744 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 114 ms
97,024 KB
testcase_23 AC 117 ms
97,200 KB
testcase_24 AC 117 ms
97,032 KB
testcase_25 AC 118 ms
97,160 KB
testcase_26 AC 128 ms
97,164 KB
testcase_27 AC 123 ms
97,408 KB
testcase_28 AC 111 ms
96,640 KB
testcase_29 AC 115 ms
97,592 KB
testcase_30 AC 120 ms
97,300 KB
testcase_31 AC 113 ms
97,152 KB
testcase_32 AC 117 ms
97,408 KB
testcase_33 WA -
testcase_34 AC 119 ms
97,280 KB
testcase_35 AC 243 ms
127,872 KB
testcase_36 AC 290 ms
127,872 KB
testcase_37 WA -
testcase_38 AC 252 ms
127,488 KB
testcase_39 AC 115 ms
100,384 KB
testcase_40 AC 108 ms
100,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

range3 = range(3)

def lap(bin, x, y, dx, dy):
    for xx in range3:
        for yy in range3:
            for bx, by in bin[dx + xx][dy + yy]:
                if (bx - x) ** 2 + (by - y) ** 2 < 400:
                    return True
    bin[dx][dy].append((x, y))
    return False


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

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

    return count


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

    print(solve(XY))


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