結果

問題 No.202 1円玉投げ
ユーザー n_knuun_knuu
提出日時 2015-05-05 00:34:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 501 ms / 5,000 ms
コード長 803 bytes
コンパイル時間 445 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 117,840 KB
最終ジャッジ日時 2024-12-22 08:30:43
合計ジャッジ時間 11,574 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 501 ms
117,760 KB
testcase_01 AC 319 ms
117,840 KB
testcase_02 AC 80 ms
90,112 KB
testcase_03 AC 76 ms
89,984 KB
testcase_04 AC 78 ms
90,240 KB
testcase_05 AC 141 ms
108,160 KB
testcase_06 AC 316 ms
115,328 KB
testcase_07 AC 330 ms
115,508 KB
testcase_08 AC 332 ms
115,200 KB
testcase_09 AC 254 ms
112,640 KB
testcase_10 AC 172 ms
109,184 KB
testcase_11 AC 224 ms
111,488 KB
testcase_12 AC 224 ms
111,872 KB
testcase_13 AC 181 ms
110,080 KB
testcase_14 AC 143 ms
108,416 KB
testcase_15 AC 240 ms
112,564 KB
testcase_16 AC 397 ms
117,568 KB
testcase_17 AC 405 ms
117,292 KB
testcase_18 AC 400 ms
117,556 KB
testcase_19 AC 235 ms
112,772 KB
testcase_20 AC 296 ms
114,432 KB
testcase_21 AC 238 ms
112,512 KB
testcase_22 AC 126 ms
107,504 KB
testcase_23 AC 121 ms
107,264 KB
testcase_24 AC 123 ms
107,520 KB
testcase_25 AC 131 ms
107,764 KB
testcase_26 AC 123 ms
107,648 KB
testcase_27 AC 124 ms
107,264 KB
testcase_28 AC 127 ms
107,392 KB
testcase_29 AC 124 ms
107,520 KB
testcase_30 AC 124 ms
107,516 KB
testcase_31 AC 119 ms
107,648 KB
testcase_32 AC 121 ms
107,520 KB
testcase_33 AC 130 ms
107,776 KB
testcase_34 AC 129 ms
107,708 KB
testcase_35 AC 456 ms
117,120 KB
testcase_36 AC 494 ms
117,436 KB
testcase_37 AC 355 ms
116,608 KB
testcase_38 AC 462 ms
117,248 KB
testcase_39 AC 84 ms
90,540 KB
testcase_40 AC 85 ms
90,496 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