結果
問題 |
No.32 貯金箱の憂鬱
|
ユーザー |
|
提出日時 | 2020-07-16 15:19:39 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 205 bytes |
コンパイル時間 | 106 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-11-24 20:08:44 |
合計ジャッジ時間 | 1,052 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 4 WA * 8 |
ソースコード
L = int(input()) M = int(input()) N = int(input()) exchangedL = L if L < 10 else L % 10 exchangedM = M if M < 4 else M % 4 exchangedN = N if N < 25 else N % 25 print(exchangedL + exchangedM + exchangedN)