結果
| 問題 | No.32 貯金箱の憂鬱 |
| コンテスト | |
| ユーザー |
koyopro
|
| 提出日時 | 2015-09-20 03:19:08 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 76 ms / 5,000 ms |
| コード長 | 249 bytes |
| 記録 | |
| コンパイル時間 | 173 ms |
| コンパイル使用メモリ | 77,604 KB |
| 最終ジャッジ日時 | 2025-12-03 17:07:27 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 12 |
ソースコード
# -*- coding: utf-8 -*-
l, = map(int, raw_input().split())
m, = map(int, raw_input().split())
n, = map(int, raw_input().split())
while n >= 25:
n -= 25
m += 1
while m >= 4:
m -= 4
l += 1
while l >= 10:
l -= 10
print l + m + n
koyopro