結果
| 問題 | No.32 貯金箱の憂鬱 |
| コンテスト | |
| ユーザー |
misa2001space
|
| 提出日時 | 2016-09-28 22:33:32 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 312 bytes |
| 記録 | |
| コンパイル時間 | 149 ms |
| コンパイル使用メモリ | 76,944 KB |
| 最終ジャッジ日時 | 2025-12-03 21:39:31 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 3 WA * 9 |
ソースコード
# -*- coding: utf-8 -*-
from __future__ import absolute_import
from __future__ import unicode_literals
L = input()
M = input()
N = input()
c = 0
if L / 25 > 0:
M += L / 25
c += L % 25
else:
c += L
if M / 4 > 0:
N += M / 4
c += M % 4
else:
c += M
if N / 10 > 0:
c += N % 10
print c
misa2001space