結果
| 問題 | No.32 貯金箱の憂鬱 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-09-29 22:47:26 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 155 bytes |
| 記録 | |
| コンパイル時間 | 561 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 20,572 KB |
| 最終ジャッジ日時 | 2026-05-28 22:36:47 |
| 合計ジャッジ時間 | 4,315 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 12 |
ソースコード
text = input() L = int(text.split()[0]) M = int(text.split()[1]) N = int(text.split()[2]) M = M + int(N / 25) L = L + int(M / 4) print(L%10 + M%4 + N%25)