結果

問題 No.2056 非力なレッド
ユーザー ThetaTheta
提出日時 2022-10-07 11:59:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 521 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 62,148 KB
最終ジャッジ日時 2024-06-11 19:35:56
合計ジャッジ時間 23,315 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 435 ms
43,540 KB
testcase_01 AC 448 ms
43,676 KB
testcase_02 AC 433 ms
43,568 KB
testcase_03 AC 443 ms
43,444 KB
testcase_04 AC 437 ms
43,548 KB
testcase_05 AC 435 ms
43,308 KB
testcase_06 AC 447 ms
43,444 KB
testcase_07 AC 434 ms
43,436 KB
testcase_08 AC 445 ms
43,544 KB
testcase_09 AC 477 ms
43,572 KB
testcase_10 WA -
testcase_11 AC 472 ms
43,436 KB
testcase_12 AC 484 ms
43,696 KB
testcase_13 AC 551 ms
54,264 KB
testcase_14 AC 521 ms
54,044 KB
testcase_15 AC 549 ms
54,032 KB
testcase_16 AC 449 ms
43,568 KB
testcase_17 AC 502 ms
48,812 KB
testcase_18 AC 441 ms
43,568 KB
testcase_19 AC 462 ms
43,560 KB
testcase_20 AC 578 ms
56,948 KB
testcase_21 AC 481 ms
43,436 KB
testcase_22 AC 534 ms
54,116 KB
testcase_23 AC 614 ms
50,972 KB
testcase_24 AC 504 ms
46,052 KB
testcase_25 AC 586 ms
57,644 KB
testcase_26 AC 588 ms
58,528 KB
testcase_27 AC 576 ms
57,812 KB
testcase_28 AC 616 ms
61,996 KB
testcase_29 AC 612 ms
62,020 KB
testcase_30 AC 702 ms
61,728 KB
testcase_31 AC 609 ms
61,736 KB
testcase_32 AC 622 ms
61,756 KB
testcase_33 AC 691 ms
62,136 KB
testcase_34 AC 597 ms
61,888 KB
testcase_35 AC 631 ms
62,148 KB
testcase_36 AC 528 ms
62,020 KB
testcase_37 AC 587 ms
62,000 KB
testcase_38 AC 433 ms
43,440 KB
testcase_39 AC 440 ms
43,444 KB
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


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


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