結果

問題 No.202 1円玉投げ
ユーザー ayaoniayaoni
提出日時 2021-08-30 21:56:00
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,093 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 107,112 KB
最終ジャッジ日時 2024-12-22 12:09:53
合計ジャッジ時間 7,338 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 91 ms
90,112 KB
testcase_03 AC 88 ms
90,112 KB
testcase_04 AC 89 ms
89,728 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 111 ms
91,136 KB
testcase_15 RE -
testcase_16 AC 220 ms
106,568 KB
testcase_17 AC 249 ms
106,736 KB
testcase_18 AC 202 ms
107,112 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 110 ms
91,136 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 96 ms
91,392 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 91 ms
91,200 KB
testcase_32 AC 99 ms
91,300 KB
testcase_33 RE -
testcase_34 AC 106 ms
91,560 KB
testcase_35 AC 201 ms
106,524 KB
testcase_36 RE -
testcase_37 RE -
testcase_38 AC 200 ms
106,068 KB
testcase_39 AC 86 ms
91,136 KB
testcase_40 AC 82 ms
90,112 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(800)] for _ in range(800)]
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 < 800):
            continue
        for dj in R:
            nj = j+dj
            if not (0 <= nj < 800):
                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