結果
| 問題 | No.218 経験値1.5倍 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-09-13 13:10:05 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 269 bytes |
| 記録 | |
| コンパイル時間 | 69 ms |
| コンパイル使用メモリ | 80,640 KB |
| 実行使用メモリ | 81,408 KB |
| 最終ジャッジ日時 | 2026-07-17 21:08:01 |
| 合計ジャッジ時間 | 3,517 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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'