結果

問題 No.32 貯金箱の憂鬱
ユーザー ktayaktaya
提出日時 2019-01-10 21:38:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 232 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 53,148 KB
最終ジャッジ日時 2024-07-23 07:24:38
合計ジャッジ時間 1,574 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,748 KB
testcase_01 AC 39 ms
53,072 KB
testcase_02 AC 39 ms
53,136 KB
testcase_03 AC 39 ms
53,116 KB
testcase_04 AC 39 ms
52,928 KB
testcase_05 AC 40 ms
53,148 KB
testcase_06 AC 39 ms
52,348 KB
testcase_07 AC 39 ms
52,112 KB
testcase_08 AC 40 ms
52,500 KB
testcase_09 AC 39 ms
52,668 KB
testcase_10 AC 39 ms
53,132 KB
testcase_11 AC 40 ms
52,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = int(input())
b = int(input())
c = int(input())

def calc(a, b, c):
    q1, mod1 = divmod(c, 25)
    b += q1
    q2, mod2 = divmod(b, 4)
    a += q2
    q3, mod3 = divmod(a, 10)
    return mod1 + mod2 + mod3

print(calc(a, b, c))
0