結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4,968 ms
25,600 KB
testcase_01 AC 1,485 ms
25,472 KB
testcase_02 AC 34 ms
12,160 KB
testcase_03 AC 33 ms
12,160 KB
testcase_04 AC 34 ms
12,032 KB
testcase_05 AC 74 ms
12,928 KB
testcase_06 AC 1,068 ms
22,016 KB
testcase_07 AC 1,266 ms
23,296 KB
testcase_08 AC 1,267 ms
23,168 KB
testcase_09 AC 593 ms
18,688 KB
testcase_10 AC 237 ms
15,104 KB
testcase_11 AC 467 ms
17,664 KB
testcase_12 AC 498 ms
17,920 KB
testcase_13 AC 241 ms
15,360 KB
testcase_14 AC 87 ms
13,184 KB
testcase_15 AC 550 ms
18,560 KB
testcase_16 AC 3,604 ms
25,216 KB
testcase_17 AC 3,691 ms
25,088 KB
testcase_18 AC 3,721 ms
25,216 KB
testcase_19 AC 544 ms
18,176 KB
testcase_20 AC 985 ms
21,248 KB
testcase_21 AC 535 ms
18,048 KB
testcase_22 AC 43 ms
12,288 KB
testcase_23 AC 42 ms
12,288 KB
testcase_24 AC 42 ms
12,032 KB
testcase_25 AC 39 ms
12,032 KB
testcase_26 AC 41 ms
12,160 KB
testcase_27 AC 42 ms
12,288 KB
testcase_28 AC 40 ms
12,032 KB
testcase_29 AC 40 ms
12,032 KB
testcase_30 AC 43 ms
12,288 KB
testcase_31 AC 43 ms
12,032 KB
testcase_32 AC 43 ms
12,160 KB
testcase_33 AC 51 ms
12,032 KB
testcase_34 AC 77 ms
12,160 KB
testcase_35 AC 4,787 ms
24,960 KB
testcase_36 TLE -
testcase_37 AC 1,400 ms
23,680 KB
testcase_38 AC 4,747 ms
25,344 KB
testcase_39 AC 37 ms
12,032 KB
testcase_40 AC 36 ms
12,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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)
0