結果

問題 No.32 貯金箱の憂鬱
ユーザー pppppp
提出日時 2016-01-20 11:42:05
言語 Python2
(2.7.18)
結果
AC  
実行時間 12 ms / 5,000 ms
コード長 284 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 7,068 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2024-07-23 02:14:38
合計ジャッジ時間 1,057 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

L = int(raw_input())
M = int(raw_input())
N = int(raw_input())
amount = int(L*100 + M*25 + N*1)

amount = amount - amount / 1000 * 1000
coin100 = amount / 100
amount = amount - amount / 100 * 100
coin25 = amount / 25
amount = amount - amount / 25 * 25

print coin100 + coin25 + amount
0