結果
| 問題 |
No.32 貯金箱の憂鬱
|
| コンテスト | |
| ユーザー |
lrf141
|
| 提出日時 | 2016-12-01 14:48:20 |
| 言語 | Python2 (2.7.18) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 169 bytes |
| コンパイル時間 | 723 ms |
| コンパイル使用メモリ | 6,944 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-11-27 15:46:36 |
| 合計ジャッジ時間 | 1,365 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 5 WA * 7 |
ソースコード
l = int(raw_input())
m = int(raw_input())
n = int(raw_input())
while 25 <= n:
n-=25
m+-1
while 4 <= m:
m-=4
l+=1
while 10 <= l:
l-=10
print l+m+n
lrf141