結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 34 ms
51,968 KB
testcase_03 AC 41 ms
57,984 KB
testcase_04 AC 50 ms
62,336 KB
testcase_05 AC 41 ms
57,856 KB
testcase_06 AC 62 ms
65,024 KB
testcase_07 AC 67 ms
65,408 KB
testcase_08 AC 57 ms
64,128 KB
testcase_09 AC 62 ms
64,128 KB
testcase_10 AC 44 ms
57,088 KB
testcase_11 AC 83 ms
67,968 KB
testcase_12 AC 54 ms
63,104 KB
testcase_13 AC 62 ms
64,512 KB
testcase_14 AC 60 ms
62,336 KB
testcase_15 AC 48 ms
61,824 KB
testcase_16 AC 57 ms
63,104 KB
testcase_17 AC 59 ms
63,872 KB
testcase_18 AC 56 ms
61,440 KB
testcase_19 AC 49 ms
62,208 KB
testcase_20 AC 45 ms
60,032 KB
testcase_21 AC 58 ms
63,232 KB
testcase_22 AC 63 ms
64,512 KB
testcase_23 AC 45 ms
59,776 KB
testcase_24 AC 42 ms
58,496 KB
testcase_25 AC 48 ms
61,440 KB
testcase_26 AC 54 ms
62,464 KB
testcase_27 AC 55 ms
62,080 KB
testcase_28 AC 49 ms
60,416 KB
testcase_29 AC 43 ms
60,032 KB
testcase_30 AC 50 ms
62,464 KB
testcase_31 AC 56 ms
64,128 KB
testcase_32 AC 60 ms
64,128 KB
testcase_33 AC 35 ms
51,968 KB
testcase_34 AC 35 ms
51,712 KB
testcase_35 AC 34 ms
51,840 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