結果

問題 No.32 貯金箱の憂鬱
ユーザー flax_fluxflax_flux
提出日時 2018-03-04 03:36:02
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 35 ms / 5,000 ms
コード長 173 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-23 07:05:32
合計ジャッジ時間 1,057 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

h = int(input())
t = int(input())
o = int(input())

t = h * 100 + t * 25 + o
t -= (t // 1000) * 1000
ch = t // 100
t -= ch * 100
ct = t // 25
t -= ct * 25
print(ch + ct + t)
0