結果

問題 No.202 1円玉投げ
ユーザー n_knuun_knuu
提出日時 2015-05-05 00:32:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,496 ms / 5,000 ms
コード長 803 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 98,048 KB
最終ジャッジ日時 2024-12-22 08:32:01
合計ジャッジ時間 40,519 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,353 ms
97,920 KB
testcase_01 AC 1,359 ms
97,792 KB
testcase_02 AC 588 ms
82,176 KB
testcase_03 AC 554 ms
82,304 KB
testcase_04 AC 581 ms
82,304 KB
testcase_05 AC 656 ms
83,200 KB
testcase_06 AC 1,327 ms
93,824 KB
testcase_07 AC 1,456 ms
94,848 KB
testcase_08 AC 1,458 ms
95,104 KB
testcase_09 AC 1,093 ms
89,728 KB
testcase_10 AC 772 ms
85,632 KB
testcase_11 AC 962 ms
88,576 KB
testcase_12 AC 962 ms
88,832 KB
testcase_13 AC 823 ms
85,888 KB
testcase_14 AC 636 ms
83,584 KB
testcase_15 AC 1,042 ms
89,600 KB
testcase_16 AC 1,273 ms
97,792 KB
testcase_17 AC 1,337 ms
97,664 KB
testcase_18 AC 1,314 ms
97,792 KB
testcase_19 AC 1,023 ms
89,216 KB
testcase_20 AC 1,224 ms
92,928 KB
testcase_21 AC 997 ms
89,088 KB
testcase_22 AC 602 ms
82,432 KB
testcase_23 AC 566 ms
82,560 KB
testcase_24 AC 574 ms
82,304 KB
testcase_25 AC 587 ms
82,304 KB
testcase_26 AC 589 ms
82,304 KB
testcase_27 AC 576 ms
82,432 KB
testcase_28 AC 574 ms
82,304 KB
testcase_29 AC 585 ms
82,304 KB
testcase_30 AC 605 ms
82,432 KB
testcase_31 AC 600 ms
82,432 KB
testcase_32 AC 568 ms
82,432 KB
testcase_33 AC 561 ms
82,432 KB
testcase_34 AC 572 ms
82,560 KB
testcase_35 AC 1,426 ms
97,536 KB
testcase_36 AC 1,452 ms
97,920 KB
testcase_37 AC 1,496 ms
95,744 KB
testcase_38 AC 1,397 ms
98,048 KB
testcase_39 AC 592 ms
82,432 KB
testcase_40 AC 585 ms
82,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import hypot
N = int(input())

def isOverlap(x1, y1, x2, y2, r=10):
    return hypot(x1-x2, y1-y2) < r * 2

def check(x, y):
    near = [(-1, -1), (0, -1), (1, -1),
            (-1, 0), (0, 0), (1, 0),
            (-1, 1), (0, 1), (1, 1)]
    for dx, dy in near:
        nx = x//20 + dx
        ny = y//20 + dy
        if 0 <= nx <= 1000 and 0 <= ny <= 1000:
            for cx, cy in field[nx][ny]:
#                print(x, y, nx, ny, cx, cy, isOverlap(x, y, cx, cy))
                if isOverlap(x, y, cx, cy):
                    return False
    return True
            

field = [[[] for _ in range(1001)] for _ in range(1001)]
ans = 0
for _ in range(N):
    x, y = map(int, input().split())
    if check(x, y):
        ans += 1
        field[x//20][y//20].append((x, y))    
print(ans)
0