結果

問題 No.202 1円玉投げ
ユーザー しらっ亭しらっ亭
提出日時 2015-06-26 03:18:51
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 391 ms / 5,000 ms
コード長 681 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 77,172 KB
実行使用メモリ 129,152 KB
最終ジャッジ日時 2024-06-01 20:32:16
合計ジャッジ時間 11,109 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 333 ms
128,384 KB
testcase_01 AC 361 ms
127,872 KB
testcase_02 AC 119 ms
101,520 KB
testcase_03 AC 119 ms
101,376 KB
testcase_04 AC 120 ms
101,760 KB
testcase_05 AC 166 ms
110,976 KB
testcase_06 AC 345 ms
123,688 KB
testcase_07 AC 369 ms
125,376 KB
testcase_08 AC 365 ms
125,304 KB
testcase_09 AC 276 ms
119,228 KB
testcase_10 AC 214 ms
114,176 KB
testcase_11 AC 256 ms
117,376 KB
testcase_12 AC 254 ms
117,512 KB
testcase_13 AC 215 ms
114,048 KB
testcase_14 AC 168 ms
109,472 KB
testcase_15 AC 277 ms
119,212 KB
testcase_16 AC 295 ms
128,672 KB
testcase_17 AC 306 ms
128,768 KB
testcase_18 AC 305 ms
129,152 KB
testcase_19 AC 271 ms
119,040 KB
testcase_20 AC 324 ms
122,012 KB
testcase_21 AC 266 ms
117,540 KB
testcase_22 AC 131 ms
97,288 KB
testcase_23 AC 131 ms
97,152 KB
testcase_24 AC 130 ms
97,152 KB
testcase_25 AC 130 ms
97,024 KB
testcase_26 AC 129 ms
97,152 KB
testcase_27 AC 131 ms
97,048 KB
testcase_28 AC 130 ms
97,280 KB
testcase_29 AC 133 ms
97,152 KB
testcase_30 AC 130 ms
97,300 KB
testcase_31 AC 127 ms
97,188 KB
testcase_32 AC 131 ms
97,152 KB
testcase_33 AC 133 ms
97,280 KB
testcase_34 AC 135 ms
97,408 KB
testcase_35 AC 301 ms
128,512 KB
testcase_36 AC 326 ms
128,672 KB
testcase_37 AC 391 ms
126,780 KB
testcase_38 AC 298 ms
128,640 KB
testcase_39 AC 126 ms
101,012 KB
testcase_40 AC 126 ms
100,776 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 + 1][dy + 1].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