結果

問題 No.2056 非力なレッド
ユーザー ThetaTheta
提出日時 2022-10-07 12:12:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 700 ms / 2,000 ms
コード長 621 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 63,112 KB
最終ジャッジ日時 2024-06-11 19:47:15
合計ジャッジ時間 23,470 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 436 ms
44,068 KB
testcase_01 AC 445 ms
44,076 KB
testcase_02 AC 437 ms
44,332 KB
testcase_03 AC 437 ms
44,328 KB
testcase_04 AC 436 ms
44,468 KB
testcase_05 AC 434 ms
43,948 KB
testcase_06 AC 433 ms
44,324 KB
testcase_07 AC 427 ms
44,072 KB
testcase_08 AC 436 ms
44,456 KB
testcase_09 AC 435 ms
44,072 KB
testcase_10 AC 435 ms
44,328 KB
testcase_11 AC 436 ms
44,708 KB
testcase_12 AC 444 ms
44,068 KB
testcase_13 AC 554 ms
55,208 KB
testcase_14 AC 525 ms
55,320 KB
testcase_15 AC 549 ms
55,324 KB
testcase_16 AC 447 ms
44,200 KB
testcase_17 AC 502 ms
50,468 KB
testcase_18 AC 458 ms
44,080 KB
testcase_19 AC 460 ms
44,196 KB
testcase_20 AC 579 ms
57,776 KB
testcase_21 AC 478 ms
45,484 KB
testcase_22 AC 532 ms
55,192 KB
testcase_23 AC 582 ms
52,616 KB
testcase_24 AC 486 ms
47,656 KB
testcase_25 AC 574 ms
58,076 KB
testcase_26 AC 593 ms
59,460 KB
testcase_27 AC 581 ms
58,472 KB
testcase_28 AC 631 ms
62,456 KB
testcase_29 AC 627 ms
62,468 KB
testcase_30 AC 693 ms
63,112 KB
testcase_31 AC 624 ms
62,332 KB
testcase_32 AC 631 ms
62,472 KB
testcase_33 AC 700 ms
62,944 KB
testcase_34 AC 585 ms
62,856 KB
testcase_35 AC 630 ms
62,860 KB
testcase_36 AC 507 ms
62,712 KB
testcase_37 AC 576 ms
62,608 KB
testcase_38 AC 440 ms
44,588 KB
testcase_39 AC 432 ms
44,200 KB
testcase_40 AC 434 ms
44,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


def main():
    N, X, mp = map(int, input().split())
    monsters = np.array(list(map(int, input().split())))
    current_idx = N - 1
    while current_idx >= 0:
        if monsters[current_idx] < X:
            current_idx -= 1
        else:
            if mp > current_idx:
                mask = [True]*(current_idx + 1) + [False]*(N-current_idx-1)
                monsters[mask] = [hp // 2 for hp in monsters[mask]]
                mp -= (current_idx + 1)
            else:
                print("No")
                break

    else:
        print("Yes")


if __name__ == "__main__":
    main()
0