結果

問題 No.218 経験値1.5倍
コンテスト
ユーザー hkawa117
提出日時 2015-09-13 13:10:51
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 77,624 KB
最終ジャッジ日時 2025-12-03 16:54:29
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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'
else:
    print 'NO'
0