結果

問題 No.202 1円玉投げ
ユーザー ayaoniayaoni
提出日時 2021-08-30 21:57:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 278 ms / 5,000 ms
コード長 1,093 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 108,096 KB
最終ジャッジ日時 2024-06-01 21:45:57
合計ジャッジ時間 7,498 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 198 ms
107,216 KB
testcase_01 AC 237 ms
107,188 KB
testcase_02 AC 70 ms
89,820 KB
testcase_03 AC 71 ms
90,012 KB
testcase_04 AC 70 ms
90,012 KB
testcase_05 AC 92 ms
91,512 KB
testcase_06 AC 242 ms
106,364 KB
testcase_07 AC 264 ms
108,096 KB
testcase_08 AC 260 ms
107,420 KB
testcase_09 AC 188 ms
102,676 KB
testcase_10 AC 137 ms
98,332 KB
testcase_11 AC 169 ms
102,724 KB
testcase_12 AC 179 ms
102,296 KB
testcase_13 AC 139 ms
98,252 KB
testcase_14 AC 96 ms
91,288 KB
testcase_15 AC 187 ms
102,276 KB
testcase_16 AC 166 ms
106,612 KB
testcase_17 AC 175 ms
106,616 KB
testcase_18 AC 175 ms
106,660 KB
testcase_19 AC 181 ms
102,108 KB
testcase_20 AC 244 ms
105,604 KB
testcase_21 AC 194 ms
102,044 KB
testcase_22 AC 86 ms
91,344 KB
testcase_23 AC 82 ms
91,036 KB
testcase_24 AC 82 ms
91,288 KB
testcase_25 AC 80 ms
91,576 KB
testcase_26 AC 87 ms
91,356 KB
testcase_27 AC 88 ms
91,360 KB
testcase_28 AC 81 ms
91,408 KB
testcase_29 AC 95 ms
91,252 KB
testcase_30 AC 83 ms
91,104 KB
testcase_31 AC 76 ms
91,424 KB
testcase_32 AC 85 ms
91,356 KB
testcase_33 AC 88 ms
91,156 KB
testcase_34 AC 92 ms
91,432 KB
testcase_35 AC 171 ms
106,808 KB
testcase_36 AC 201 ms
106,684 KB
testcase_37 AC 278 ms
107,292 KB
testcase_38 AC 181 ms
106,360 KB
testcase_39 AC 76 ms
91,148 KB
testcase_40 AC 74 ms
90,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N = I()

area = [[[] for _ in range(801)] for _ in range(801)]
XY = []
R = [-1,0,1]
ans = 0
for k in range(N):
    x,y = MI()
    XY.append((x,y))
    i = x//25
    j = y//25
    is_eliminated = 0
    for di in R:
        ni = i+di
        if not (0 <= ni < 801):
            continue
        for dj in R:
            nj = j+dj
            if not (0 <= nj < 801):
                continue
            for l in area[ni][nj]:
                xl,yl = XY[l]
                if (x-xl)**2+(y-yl)**2 < 400:
                    is_eliminated = 1
                    break
    if is_eliminated:
        continue
    else:
        area[i][j].append(k)
        ans += 1

print(ans)
0