結果

問題 No.32 貯金箱の憂鬱
ユーザー NecofuryaiNecofuryai
提出日時 2021-04-22 15:12:34
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 179 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 87,056 KB
実行使用メモリ 79,364 KB
最終ジャッジ日時 2023-09-17 10:01:58
合計ジャッジ時間 3,007 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

L, M, N = map(int, input().split()) 
sum = L * 100 + M * 25 + N
LL = sum // 1000
sum -= LL * 1000
L = sum // 100
sum -= L * 100
M = sum // 25
sum -= M * 25
print(LL + L + M * sum)
0