結果

問題 No.32 貯金箱の憂鬱
ユーザー mlihua09mlihua09
提出日時 2020-08-23 00:21:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 156 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,732 KB
実行使用メモリ 53,808 KB
最終ジャッジ日時 2024-07-23 08:01:55
合計ジャッジ時間 1,247 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,336 KB
testcase_01 AC 37 ms
52,124 KB
testcase_02 AC 39 ms
52,212 KB
testcase_03 AC 39 ms
53,036 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 39 ms
53,172 KB
testcase_06 AC 40 ms
52,220 KB
testcase_07 AC 38 ms
53,808 KB
testcase_08 AC 38 ms
52,400 KB
testcase_09 AC 38 ms
53,688 KB
testcase_10 AC 42 ms
53,244 KB
testcase_11 AC 40 ms
52,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


L = int(input())

M = int(input())

N = int(input())



S = L * 100 + M * 25 + N

ans = S % 25

S //= 25

ans += S % 4

S //= 4

ans += S % 10

print(ans)
0