結果

問題 No.1736 Princess vs. Dragoness
ユーザー Fullmoon85072Fullmoon85072
提出日時 2021-11-14 10:56:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 1,404 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 67,584 KB
最終ジャッジ日時 2024-11-29 10:08:53
合計ジャッジ時間 3,292 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 43 ms
58,496 KB
testcase_04 AC 54 ms
62,592 KB
testcase_05 AC 42 ms
57,728 KB
testcase_06 AC 60 ms
65,372 KB
testcase_07 AC 70 ms
65,792 KB
testcase_08 AC 59 ms
64,128 KB
testcase_09 AC 65 ms
64,640 KB
testcase_10 AC 41 ms
57,472 KB
testcase_11 AC 80 ms
67,584 KB
testcase_12 AC 52 ms
62,848 KB
testcase_13 AC 59 ms
65,408 KB
testcase_14 AC 55 ms
63,104 KB
testcase_15 AC 47 ms
61,696 KB
testcase_16 AC 51 ms
63,448 KB
testcase_17 AC 58 ms
64,384 KB
testcase_18 AC 52 ms
62,208 KB
testcase_19 AC 50 ms
62,848 KB
testcase_20 AC 45 ms
60,436 KB
testcase_21 AC 57 ms
63,360 KB
testcase_22 AC 62 ms
64,768 KB
testcase_23 AC 45 ms
59,776 KB
testcase_24 AC 43 ms
58,496 KB
testcase_25 AC 50 ms
61,824 KB
testcase_26 AC 55 ms
62,336 KB
testcase_27 AC 53 ms
63,104 KB
testcase_28 AC 46 ms
60,032 KB
testcase_29 AC 43 ms
60,032 KB
testcase_30 AC 52 ms
62,464 KB
testcase_31 AC 56 ms
64,512 KB
testcase_32 AC 59 ms
63,744 KB
testcase_33 AC 37 ms
51,968 KB
testcase_34 AC 39 ms
52,088 KB
testcase_35 AC 37 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

line = input().split(" ")
monster_num = int(line[0])
a_magic_num = int(line[1])
b_magic_num = int(line[2])
a_magic_damage = int(line[3])
b_magic_damage = int(line[4])

line = input().split(" ")
monster_hp_list = list()
for monster_hp in line:
    if not monster_hp == "":
        monster_hp_list.append(int(monster_hp))

# A Magic
for i in range(a_magic_num):
    max_value = max(monster_hp_list)
    max_index = monster_hp_list.index(max_value)

    monster_hp_list[max_index] = \
        max(0, monster_hp_list[max_index] - a_magic_damage)

    if max(monster_hp_list) == 0:
        print("Yes")
        sys.exit()

# B Magic
monster_counter = 0

for i in range(b_magic_num):
    b_magic_remaining = b_magic_damage

    while b_magic_remaining > 0:

        if b_magic_remaining < monster_hp_list[monster_counter]:
            monster_hp_list[monster_counter] -= b_magic_remaining
            b_magic_remaining = 0

        elif b_magic_remaining == monster_hp_list[monster_counter]:
            monster_hp_list[monster_counter] = 0
            b_magic_remaining = 0
            monster_counter += 1

        else:
            buf = monster_hp_list[monster_counter]

            monster_hp_list[monster_counter] = 0
            b_magic_remaining -= buf
            monster_counter += 1

        if monster_counter == monster_num:
            print("Yes")
            sys.exit()

print("No")
0