結果

問題 No.2923 Mayor's Job
ユーザー mymelochanmymelochan
提出日時 2024-09-30 22:22:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 670 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-09-30 22:22:59
合計ジャッジ時間 2,669 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,352 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 35 ms
52,608 KB
testcase_03 AC 118 ms
76,928 KB
testcase_04 AC 88 ms
77,056 KB
testcase_05 AC 96 ms
77,056 KB
testcase_06 AC 104 ms
76,800 KB
testcase_07 AC 112 ms
77,312 KB
testcase_08 AC 90 ms
76,848 KB
testcase_09 AC 97 ms
76,928 KB
testcase_10 AC 92 ms
76,928 KB
testcase_11 AC 90 ms
76,800 KB
testcase_12 AC 88 ms
76,992 KB
testcase_13 AC 66 ms
69,376 KB
testcase_14 AC 48 ms
61,184 KB
testcase_15 AC 35 ms
52,096 KB
testcase_16 AC 35 ms
52,352 KB
testcase_17 AC 35 ms
52,480 KB
testcase_18 AC 35 ms
52,224 KB
testcase_19 AC 36 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def test(N,K,H,L):
    assert 1 <= N <= 2000
    assert 1 <= K <= 10**9
    assert len(H) == N
    assert all(1 <= h <= 10**9 for h in H)
    assert len(L) == N
    assert all(len(l) == 2 for l in L)
    assert all(all(1 <= x <= 10**9 for x in l) for l in L)

def solve():
    N,K = map(int,input().split())
    H = list(map(int,input().split()))
    L = [list(map(int,input().split())) for _ in range(N)]

    test(N,K,H,L)

    ans = N
    for i in range(N):
        for j in range(N):
            if (L[i][0]-L[j][0])**2+(L[i][1]-L[j][1])**2 <= K**2:
                if H[i] < H[j]:
                    ans -= 1
                    break
    
    print(ans)


solve()
0