結果

問題 No.32 貯金箱の憂鬱
ユーザー kohei2019kohei2019
提出日時 2021-02-13 11:00:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 5,000 ms
コード長 125 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 86,940 KB
実行使用メモリ 71,312 KB
最終ジャッジ日時 2023-09-27 19:15:03
合計ジャッジ時間 1,948 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
71,224 KB
testcase_01 AC 65 ms
71,312 KB
testcase_02 AC 69 ms
71,204 KB
testcase_03 AC 64 ms
71,248 KB
testcase_04 AC 70 ms
70,956 KB
testcase_05 AC 69 ms
71,156 KB
testcase_06 AC 66 ms
71,076 KB
testcase_07 AC 67 ms
71,292 KB
testcase_08 AC 66 ms
70,952 KB
testcase_09 AC 68 ms
71,252 KB
testcase_10 AC 68 ms
71,264 KB
testcase_11 AC 68 ms
71,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L = int(input())
M = int(input())
N = int(input())
ans = 0
M += N//25
ans += N%25
L += M//4
ans += M%4
ans += L%10
print(ans)
0