結果

問題 No.871 かえるのうた
ユーザー na-shna-sh
提出日時 2019-09-03 14:16:44
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 331 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 231,544 KB
最終ジャッジ日時 2024-12-24 00:47:48
合計ジャッジ時間 67,348 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 TLE -
testcase_11 WA -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 WA -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 WA -
testcase_18 WA -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 WA -
testcase_29 WA -
testcase_30 TLE -
testcase_31 WA -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 WA -
testcase_35 TLE -
testcase_36 WA -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 WA -
testcase_42 TLE -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
権限があれば一括ダウンロードができます

ソースコード

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)
    for i, c in enumerate(X):
        if X[h] - A[h] <= c <= X[h] + A[h] and i not in cried:
            hear.append(i)
print(len(cried), cried)
0