結果

問題 No.32 貯金箱の憂鬱
ユーザー MrEMGrationMrEMGration
提出日時 2019-03-24 15:11:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 227 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 53,948 KB
最終ジャッジ日時 2024-07-23 07:30:28
合計ジャッジ時間 1,484 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,004 KB
testcase_01 AC 39 ms
52,536 KB
testcase_02 AC 40 ms
52,160 KB
testcase_03 AC 39 ms
52,476 KB
testcase_04 AC 39 ms
52,876 KB
testcase_05 AC 44 ms
52,592 KB
testcase_06 AC 41 ms
52,852 KB
testcase_07 AC 40 ms
53,376 KB
testcase_08 AC 40 ms
52,504 KB
testcase_09 AC 39 ms
52,516 KB
testcase_10 AC 39 ms
53,396 KB
testcase_11 AC 39 ms
53,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
L=int(input())
M=int(input())
N=int(input())

total=L*100+M*25+N

Bc=math.floor(total/1000)
Lc=math.floor((total-Bc*1000)/100)
Mc=math.floor((total-Bc*1000-Lc*100)/25)
Nc=total-Lc*100-Mc*25-Bc*1000

print(Lc+Mc+Nc)
0