結果

問題 No.202 1円玉投げ
ユーザー noko2250noko2250
提出日時 2015-06-06 21:03:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 343 ms / 5,000 ms
コード長 805 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 82,200 KB
最終ジャッジ日時 2024-06-01 20:26:08
合計ジャッジ時間 8,604 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 340 ms
81,312 KB
testcase_01 AC 300 ms
82,136 KB
testcase_02 AC 37 ms
59,288 KB
testcase_03 AC 38 ms
58,324 KB
testcase_04 AC 37 ms
58,956 KB
testcase_05 AC 96 ms
77,640 KB
testcase_06 AC 292 ms
81,100 KB
testcase_07 AC 311 ms
81,728 KB
testcase_08 AC 322 ms
82,176 KB
testcase_09 AC 207 ms
79,816 KB
testcase_10 AC 138 ms
78,928 KB
testcase_11 AC 189 ms
79,688 KB
testcase_12 AC 197 ms
79,684 KB
testcase_13 AC 146 ms
79,056 KB
testcase_14 AC 101 ms
77,412 KB
testcase_15 AC 210 ms
79,936 KB
testcase_16 AC 289 ms
80,804 KB
testcase_17 AC 291 ms
80,876 KB
testcase_18 AC 296 ms
80,884 KB
testcase_19 AC 217 ms
79,820 KB
testcase_20 AC 272 ms
80,768 KB
testcase_21 AC 199 ms
79,964 KB
testcase_22 AC 70 ms
74,208 KB
testcase_23 AC 62 ms
70,760 KB
testcase_24 AC 65 ms
71,808 KB
testcase_25 AC 63 ms
70,708 KB
testcase_26 AC 65 ms
71,708 KB
testcase_27 AC 61 ms
70,152 KB
testcase_28 AC 67 ms
72,252 KB
testcase_29 AC 64 ms
72,104 KB
testcase_30 AC 64 ms
72,108 KB
testcase_31 AC 58 ms
69,468 KB
testcase_32 AC 60 ms
69,472 KB
testcase_33 AC 67 ms
73,332 KB
testcase_34 AC 70 ms
73,340 KB
testcase_35 AC 326 ms
80,600 KB
testcase_36 AC 343 ms
81,956 KB
testcase_37 AC 335 ms
82,200 KB
testcase_38 AC 330 ms
80,772 KB
testcase_39 AC 54 ms
66,764 KB
testcase_40 AC 42 ms
61,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

'''
Created on 2015/06/06

@author: kiyo
'''

import math

def main():

    def check(x, y):
        for dy in range(-1, 2):
            for dx in range(-1, 2):
                bx, by = x // size + dx, y // size + dy
                if 0 <= bx < 20000 // size + 1 and 0 <= by < 20000 //size + 1:
                    for cx, cy in L[bx][by]:
                        if (x-cx)**2 + (y-cy)**2 < 400:
                            return False;
        return True;


    n = int(input())
    size = 140
    L = [[[] for i in range(20000 // size + 1)] for j in range(20000 // size + 1)]

    ans = 0
    for i in range(n):
        x, y = map(int, input().split())
        if check(x, y):
            ans += 1
            L[x//size][y//size].append((x, y))
    print(ans)


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