結果

問題 No.32 貯金箱の憂鬱
ユーザー ABKZABKZ
提出日時 2021-06-07 12:00:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 5,000 ms
コード長 198 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 53,576 KB
最終ジャッジ日時 2024-05-03 13:52:31
合計ジャッジ時間 1,480 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,076 KB
testcase_01 AC 36 ms
52,212 KB
testcase_02 AC 35 ms
51,948 KB
testcase_03 AC 36 ms
52,496 KB
testcase_04 AC 35 ms
51,888 KB
testcase_05 AC 35 ms
52,740 KB
testcase_06 AC 36 ms
52,500 KB
testcase_07 AC 36 ms
52,240 KB
testcase_08 AC 35 ms
53,508 KB
testcase_09 AC 35 ms
52,028 KB
testcase_10 AC 34 ms
52,084 KB
testcase_11 AC 36 ms
53,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

nokori = 100 * L + 25 * M + N

nokori = nokori % 1000
a, nokori = divmod(nokori, 100)
b, nokori = divmod(nokori, 25)
c = nokori

print(a + b + c)
0