結果

問題 No.2681 ゲームセンターの両替
ユーザー 寝癖寝癖
提出日時 2024-03-20 23:19:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 53,672 KB
最終ジャッジ日時 2024-10-05 04:13:55
合計ジャッジ時間 1,743 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,144 KB
testcase_01 AC 33 ms
52,460 KB
testcase_02 AC 34 ms
53,440 KB
testcase_03 AC 40 ms
53,628 KB
testcase_04 AC 34 ms
52,348 KB
testcase_05 AC 34 ms
53,576 KB
testcase_06 AC 34 ms
52,952 KB
testcase_07 AC 34 ms
53,672 KB
testcase_08 AC 32 ms
53,080 KB
testcase_09 AC 33 ms
53,104 KB
testcase_10 AC 33 ms
52,424 KB
testcase_11 AC 32 ms
52,768 KB
testcase_12 AC 32 ms
53,152 KB
testcase_13 AC 36 ms
52,272 KB
testcase_14 AC 40 ms
53,084 KB
testcase_15 AC 33 ms
52,524 KB
testcase_16 AC 33 ms
52,696 KB
testcase_17 AC 32 ms
53,420 KB
testcase_18 AC 32 ms
53,540 KB
testcase_19 AC 32 ms
52,872 KB
testcase_20 AC 33 ms
52,136 KB
testcase_21 AC 32 ms
52,756 KB
testcase_22 AC 33 ms
52,072 KB
testcase_23 AC 31 ms
52,084 KB
testcase_24 AC 33 ms
52,452 KB
testcase_25 AC 32 ms
52,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

C, Y = map(int, input().split())
kinds = [1, 5, 10, 50, 100, 500, 1000, 2000, 5000, 10000]
num = [0] * 10
ind = 9
while ind >= 0:
    num[ind] = Y // kinds[ind]
    Y = Y % kinds[ind]
    ind -= 1
if num[4] >= C:
    print('no exchange')
    exit()
k = 0
for i in range(4, 10):
    k += num[i] * kinds[i] // 100
if k < C:
    print("can't exchange")
    exit()

# あと最低C-num[4]枚欲しい...
print(num[4] + (C-num[4]+4)//5 * 5)
0