結果

問題 No.2681 ゲームセンターの両替
ユーザー tipstar0125tipstar0125
提出日時 2024-03-20 22:09:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 538 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 60,616 KB
最終ジャッジ日時 2024-10-05 04:12:20
合計ジャッジ時間 1,874 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,504 KB
testcase_01 AC 42 ms
54,548 KB
testcase_02 AC 39 ms
54,336 KB
testcase_03 AC 37 ms
54,984 KB
testcase_04 AC 40 ms
59,512 KB
testcase_05 AC 36 ms
55,044 KB
testcase_06 AC 40 ms
60,196 KB
testcase_07 AC 39 ms
60,048 KB
testcase_08 AC 40 ms
59,768 KB
testcase_09 AC 39 ms
60,616 KB
testcase_10 AC 36 ms
54,736 KB
testcase_11 AC 39 ms
59,804 KB
testcase_12 AC 39 ms
54,788 KB
testcase_13 AC 36 ms
54,516 KB
testcase_14 AC 35 ms
54,064 KB
testcase_15 AC 37 ms
54,352 KB
testcase_16 AC 39 ms
54,056 KB
testcase_17 AC 38 ms
53,992 KB
testcase_18 AC 39 ms
54,492 KB
testcase_19 AC 40 ms
54,268 KB
testcase_20 AC 38 ms
54,444 KB
testcase_21 AC 39 ms
54,208 KB
testcase_22 AC 44 ms
60,012 KB
testcase_23 AC 39 ms
54,652 KB
testcase_24 AC 40 ms
54,664 KB
testcase_25 AC 38 ms
53,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
C,Y=list(map(int,input().split()))
coin=[1,5,10,50,100,500,1000,2000,5000,10000]
L=len(coin)

cnt=defaultdict(int)
for i in range(L-1,-1,-1):
    cnt[coin[i]]=Y//coin[i]
    Y-=cnt[coin[i]]*coin[i]

if cnt[100]>=C:
    print("no exchange")
    exit(0)

can_exchange_money=0
for (k,v) in cnt.items():
    if k>100:can_exchange_money+=k*v
if cnt[100]+can_exchange_money//100<C:
    print("can't exchange")
    exit(0)
ans=cnt[100]
while True:
    ans+=5
    if ans>=C:
        print(ans)
        exit(0)
0