結果

問題 No.32 貯金箱の憂鬱
コンテスト
ユーザー neko
提出日時 2019-10-08 21:26:48
言語 Python3
(3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
AC  
実行時間 94 ms / 5,000 ms
+ 130µs
コード長 237 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 619 ms
コンパイル使用メモリ 21,540 KB
実行使用メモリ 15,868 KB
最終ジャッジ日時 2026-08-23 21:15:17
合計ジャッジ時間 3,531 ms
ジャッジサーバーID
(参考情報)
judge1_1 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

list_input=[int(input()) for i in range(3)]

total=list_input[0]*100+list_input[1]*25+list_input[2]*1
amari1000=total%1000
t100=amari1000//100
amari100=amari1000%100
t25=amari100//25
t1=amari100%25

total_all=t100+t25+t1
print(total_all)
0