結果

問題 No.1736 Princess vs. Dragoness
ユーザー nariyelnariyel
提出日時 2021-11-12 22:15:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 658 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-11-25 19:11:49
合計ジャッジ時間 5,903 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 61 ms
11,008 KB
testcase_05 AC 38 ms
10,752 KB
testcase_06 AC 245 ms
10,880 KB
testcase_07 AC 718 ms
11,136 KB
testcase_08 AC 276 ms
11,008 KB
testcase_09 AC 410 ms
11,136 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 83 ms
11,008 KB
testcase_12 AC 95 ms
11,008 KB
testcase_13 AC 239 ms
11,264 KB
testcase_14 AC 245 ms
11,136 KB
testcase_15 AC 67 ms
10,752 KB
testcase_16 WA -
testcase_17 AC 180 ms
10,880 KB
testcase_18 AC 275 ms
10,880 KB
testcase_19 AC 317 ms
11,008 KB
testcase_20 AC 62 ms
10,880 KB
testcase_21 AC 31 ms
11,008 KB
testcase_22 AC 595 ms
11,264 KB
testcase_23 AC 32 ms
10,880 KB
testcase_24 AC 39 ms
10,752 KB
testcase_25 WA -
testcase_26 AC 31 ms
11,136 KB
testcase_27 AC 30 ms
11,008 KB
testcase_28 AC 37 ms
10,880 KB
testcase_29 AC 39 ms
11,136 KB
testcase_30 AC 67 ms
10,880 KB
testcase_31 WA -
testcase_32 AC 41 ms
11,008 KB
testcase_33 AC 26 ms
10,752 KB
testcase_34 AC 26 ms
10,752 KB
testcase_35 AC 25 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin, stderr

N, A, B, X, Y = map(int, stdin.readline().split())
M = list(map(int, stdin.readline().split()))
tX = [(M[i], i) for i in range(N)]
tX.sort(reverse=True)

while A >= 1:
    for i in range(N):
        if A < 1:
            break
        mat = tX[i][1]
        M[mat] -= X
        A -= 1

yz = Y
while B >= 1:
    for i in range(N):
        if M[i] <= 0:
            continue
        D = min(yz, M[i])
        M[i] -= D; yz -= D
        if yz <= 0:
            yz = Y
            break
    B -= 1


drapeau = True
print(M, file=stderr)
for i in range(N):
    if M[i] > 0:
        drapeau = False
print("Yes" if drapeau else "No")
0