結果

問題 No.2681 ゲームセンターの両替
ユーザー tassei903tassei903
提出日時 2024-03-20 21:46:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 721 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 53,444 KB
最終ジャッジ日時 2024-10-05 04:10:32
合計ジャッジ時間 1,791 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,800 KB
testcase_01 AC 36 ms
53,004 KB
testcase_02 AC 33 ms
52,416 KB
testcase_03 AC 31 ms
53,000 KB
testcase_04 AC 31 ms
53,244 KB
testcase_05 AC 32 ms
52,772 KB
testcase_06 AC 32 ms
52,880 KB
testcase_07 AC 31 ms
53,444 KB
testcase_08 AC 33 ms
52,336 KB
testcase_09 AC 32 ms
52,216 KB
testcase_10 AC 32 ms
52,816 KB
testcase_11 AC 33 ms
52,908 KB
testcase_12 AC 33 ms
52,492 KB
testcase_13 AC 34 ms
52,000 KB
testcase_14 AC 37 ms
53,372 KB
testcase_15 AC 33 ms
53,080 KB
testcase_16 AC 32 ms
51,876 KB
testcase_17 AC 32 ms
52,836 KB
testcase_18 AC 31 ms
53,384 KB
testcase_19 AC 31 ms
51,888 KB
testcase_20 AC 31 ms
52,276 KB
testcase_21 AC 31 ms
53,080 KB
testcase_22 AC 31 ms
52,388 KB
testcase_23 AC 31 ms
52,824 KB
testcase_24 AC 34 ms
52,692 KB
testcase_25 AC 35 ms
52,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
coin = [1, 5, 10, 50, 100, 500, 1000, 5000, 10000]
def convert_japanese_yen(yen):
    count = [0] * 9
    for i in range(8, -1, -1):
        count[i] = yen // coin[i]
        yen %= coin[i]
    return count


c, y = na()

a = convert_japanese_yen(y)

if y//100 < c:
    print("can't exchange")
elif a[4] >= c:
    print("no exchange")
else:
    print((a[4] - c)%5 + c)
0