結果
問題 | No.32 貯金箱の憂鬱 |
ユーザー | ktaya |
提出日時 | 2019-01-10 21:32:23 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 232 bytes |
コンパイル時間 | 523 ms |
コンパイル使用メモリ | 81,880 KB |
実行使用メモリ | 54,024 KB |
最終ジャッジ日時 | 2024-11-24 14:01:48 |
合計ジャッジ時間 | 1,168 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
52,128 KB |
testcase_01 | AC | 37 ms
52,812 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 | 33 ms
53,500 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
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))