結果

問題 No.202 1円玉投げ
ユーザー noko2250noko2250
提出日時 2015-06-06 21:05:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 790 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,728 KB
最終ジャッジ日時 2024-06-01 20:28:18
合計ジャッジ時間 45,823 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4,721 ms
25,728 KB
testcase_01 AC 1,243 ms
25,600 KB
testcase_02 AC 31 ms
12,160 KB
testcase_03 AC 30 ms
12,288 KB
testcase_04 AC 30 ms
12,160 KB
testcase_05 AC 71 ms
13,056 KB
testcase_06 AC 943 ms
22,144 KB
testcase_07 AC 1,098 ms
23,296 KB
testcase_08 AC 1,120 ms
23,296 KB
testcase_09 AC 509 ms
18,816 KB
testcase_10 AC 201 ms
15,232 KB
testcase_11 AC 421 ms
17,792 KB
testcase_12 AC 422 ms
17,920 KB
testcase_13 AC 218 ms
15,616 KB
testcase_14 AC 76 ms
13,440 KB
testcase_15 AC 496 ms
18,688 KB
testcase_16 AC 3,414 ms
25,344 KB
testcase_17 AC 3,449 ms
25,344 KB
testcase_18 AC 3,477 ms
25,344 KB
testcase_19 AC 489 ms
18,304 KB
testcase_20 AC 853 ms
21,248 KB
testcase_21 AC 480 ms
18,304 KB
testcase_22 AC 40 ms
12,416 KB
testcase_23 AC 40 ms
12,288 KB
testcase_24 AC 38 ms
12,160 KB
testcase_25 AC 36 ms
12,160 KB
testcase_26 AC 38 ms
12,416 KB
testcase_27 AC 37 ms
12,416 KB
testcase_28 AC 36 ms
12,160 KB
testcase_29 AC 36 ms
12,288 KB
testcase_30 AC 39 ms
12,288 KB
testcase_31 AC 35 ms
12,288 KB
testcase_32 AC 36 ms
12,288 KB
testcase_33 AC 45 ms
12,288 KB
testcase_34 AC 70 ms
12,416 KB
testcase_35 AC 4,483 ms
25,088 KB
testcase_36 TLE -
testcase_37 AC 1,225 ms
23,808 KB
testcase_38 AC 4,522 ms
25,600 KB
testcase_39 AC 33 ms
12,160 KB
testcase_40 AC 31 ms
12,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

'''
Created on 2015/06/06
'''

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