結果

問題 No.871 かえるのうた
ユーザー na-shna-sh
提出日時 2019-09-03 15:33:38
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 374 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 53,452 KB
最終ジャッジ日時 2024-12-24 04:11:19
合計ジャッジ時間 42,624 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
16,000 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 WA -
testcase_04 RE -
testcase_05 AC 28 ms
28,080 KB
testcase_06 RE -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 RE -
testcase_11 WA -
testcase_12 TLE -
testcase_13 RE -
testcase_14 AC 333 ms
32,048 KB
testcase_15 TLE -
testcase_16 RE -
testcase_17 AC 127 ms
53,452 KB
testcase_18 AC 49 ms
18,564 KB
testcase_19 TLE -
testcase_20 RE -
testcase_21 TLE -
testcase_22 RE -
testcase_23 AC 28 ms
10,880 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 WA -
testcase_28 AC 27 ms
10,752 KB
testcase_29 AC 82 ms
17,684 KB
testcase_30 TLE -
testcase_31 WA -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 56 ms
15,212 KB
testcase_35 TLE -
testcase_36 AC 128 ms
22,412 KB
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 AC 27 ms
10,752 KB
testcase_42 RE -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 RE -
testcase_47 AC 26 ms
10,752 KB
testcase_48 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
X = list(map(int, input().split()))
A = list(map(int, input().split()))

hear = {K-1}
cried = set()
while len(hear):
    h = hear.pop()
    cried.add(h)
    cdt = X[:]
    for i, c in enumerate(X):
        if X[h] - A[h] <= c <= X[h] + A[h] and i not in cried:
            hear.add(i)
            cdt.pop(i)
    X = cdt[:]
print(len(cried))
0