結果

問題 No.1015 おつりは要らないです
ユーザー mkawa2mkawa2
提出日時 2020-04-03 22:49:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,004 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,816 KB
最終ジャッジ日時 2024-07-03 05:15:38
合計ジャッジ時間 4,327 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 26 ms
10,880 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 27 ms
10,880 KB
testcase_08 AC 27 ms
10,880 KB
testcase_09 AC 26 ms
10,880 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 136 ms
21,816 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 127 ms
21,692 KB
testcase_18 AC 125 ms
21,156 KB
testcase_19 AC 125 ms
21,000 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 27 ms
10,880 KB
testcase_31 AC 110 ms
12,672 KB
testcase_32 AC 110 ms
12,672 KB
testcase_33 AC 68 ms
21,652 KB
testcase_34 AC 28 ms
10,752 KB
testcase_35 AC 28 ms
10,880 KB
testcase_36 AC 27 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
from collections import deque
import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def SI(): return sys.stdin.readline()[:-1]

def main():
    n,x,y,z=MI()
    aa=LI()
    for i in range(n):
        c=aa[i]//10000
        c=min(c,x)
        aa[i]-=10000*c
        x-=c
        if x==0:break
    aa.sort(reverse=True)
    while aa and aa[-1]==0:aa.pop()
    aa=aa[x:]

    for i in range(len(aa)):
        c=aa[i]//5000
        c=min(c,y)
        aa[i]-=5000*c
        y-=c
        if y==0:break
    aa.sort(reverse=True)
    while aa and aa[-1]==0:aa.pop()
    aa=aa[y:]

    for a in aa:
        c=a//1000+1
        z-=c
        if z<0:
            print("No")
            exit()
    print("Yes")

main()
0