結果

問題 No.32 貯金箱の憂鬱
ユーザー ktayaktaya
提出日時 2019-01-10 21:32:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 232 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 53,884 KB
最終ジャッジ日時 2024-05-03 13:40:50
合計ジャッジ時間 1,270 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 37 ms
51,840 KB
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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