結果
問題 | No.32 貯金箱の憂鬱 |
ユーザー | yuki2006 |
提出日時 | 2014-09-30 19:28:21 |
言語 | Python2 (2.7.18) |
結果 |
AC
|
実行時間 | 15 ms / 5,000 ms |
コード長 | 143 bytes |
コンパイル時間 | 659 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 7,040 KB |
最終ジャッジ日時 | 2024-07-23 01:57:20 |
合計ジャッジ時間 | 1,160 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 12 |
ソースコード
import Queue L = int(raw_input()) M = int(raw_input()) N = int(raw_input()) M += N // 25 N %= 25 L += M // 4 M %= 4 L %= 10 print L + M + N