結果
| 問題 |
No.32 貯金箱の憂鬱
|
| コンテスト | |
| ユーザー |
muuyuum
|
| 提出日時 | 2016-07-10 12:56:58 |
| 言語 | Python2 (2.7.18) |
| 結果 |
AC
|
| 実行時間 | 11 ms / 5,000 ms |
| コード長 | 138 bytes |
| コンパイル時間 | 317 ms |
| コンパイル使用メモリ | 7,068 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2024-07-23 02:21:47 |
| 合計ジャッジ時間 | 812 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 12 |
ソースコード
L = int(raw_input()) M = int(raw_input()) N = int(raw_input()) n = N % 25 m = (N / 25 + M) % 4 l = ((N / 25 + M) / 4 + L) % 10 print n+m+l
muuyuum