結果
| 問題 | No.218 経験値1.5倍 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-09-13 13:10:05 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 269 bytes |
| 記録 | |
| コンパイル時間 | 292 ms |
| コンパイル使用メモリ | 77,760 KB |
| 最終ジャッジ日時 | 2025-12-03 16:54:26 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 13 WA * 18 |
ソースコード
from math import ceil
expformax = float(raw_input())
expbyitem = float(raw_input())
expbycamp = float(raw_input())
m = ceil(expformax / expbyitem)
n = ceil(expformax / expbycamp)
if int((m * 2)/3) >= n:
print 'YES'
print m,n,int((m*2)/3)
else:
print 'NO'