結果
| 問題 | No.453 製薬会社 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-12-04 01:23:42 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 237 bytes |
| 記録 | |
| コンパイル時間 | 218 ms |
| コンパイル使用メモリ | 77,632 KB |
| 最終ジャッジ日時 | 2025-12-03 22:51:41 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 7 WA * 2 |
ソースコード
#!/usr/bin/python2
# -*- coding: utf-8 -*-
# †
c, d = map(int, raw_input().split())
if 2*d > 5*c:
# 2*d = 5*cにする
c = 2*d / 5
elif 3*d < c:
# 3*d = cにする
c = 3*d
res = 1000 * float(6*c + 34*d) / 13
print res