結果
問題 |
No.32 貯金箱の憂鬱
|
ユーザー |
|
提出日時 | 2023-08-22 15:25:54 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 102 bytes |
コンパイル時間 | 153 ms |
コンパイル使用メモリ | 82,368 KB |
実行使用メモリ | 53,944 KB |
最終ジャッジ日時 | 2024-12-17 14:50:50 |
合計ジャッジ時間 | 1,243 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 1 WA * 11 |
ソースコード
L=int(input()) M=int(input()) N=int(input()) N,M=N%25,M+(N//25) M,L=M%4,L+(M//4) print(N+M+L%10+L//10)