結果

問題 No.1736 Princess vs. Dragoness
ユーザー Goltermann大和Goltermann大和
提出日時 2021-11-12 22:30:42
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 681 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-11-25 19:47:25
合計ジャッジ時間 9,982 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 102 ms
10,880 KB
testcase_05 AC 38 ms
10,624 KB
testcase_06 AC 405 ms
10,752 KB
testcase_07 AC 814 ms
11,008 KB
testcase_08 AC 314 ms
10,624 KB
testcase_09 AC 509 ms
10,880 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 441 ms
11,008 KB
testcase_14 WA -
testcase_15 AC 104 ms
10,752 KB
testcase_16 AC 163 ms
10,624 KB
testcase_17 WA -
testcase_18 AC 532 ms
10,752 KB
testcase_19 AC 508 ms
10,752 KB
testcase_20 AC 93 ms
10,624 KB
testcase_21 WA -
testcase_22 AC 653 ms
10,752 KB
testcase_23 WA -
testcase_24 AC 53 ms
10,624 KB
testcase_25 AC 74 ms
10,752 KB
testcase_26 WA -
testcase_27 AC 117 ms
11,008 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 123 ms
10,880 KB
testcase_32 WA -
testcase_33 AC 26 ms
10,624 KB
testcase_34 WA -
testcase_35 AC 27 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,a,b,x,y = map(int,input().split())
h = list(map(int,input().split()))
# n:敵の数 a:撃てる回数 b:撃てる回数 x:a与ダメージ y:b与ダメージ
def magic_a(x,h):
    h[h.index(max(h))] -= x
    return h

def magic_b(y,h):
    for enemy_num in range(n):
        if h[enemy_num]<=y:
            y -= h[enemy_num]
            h[enemy_num]=0
        else:
            h[enemy_num]-=y
    return h

while True:
    if a==0:
        break
    h = magic_a(x,h)
    a -= 1

while True:
    if b==0:
        break
    h = magic_b(y,h)
    b -= 1

judge = True
for monster in h:
    if monster>0:
        judge = False

if judge:
    print("Yes")
else:
    print("No")
    
0