結果

問題 No.218 経験値1.5倍
ユーザー hkawa117
提出日時 2015-09-13 13:10:51
言語 Python2
(2.7.18)
結果
AC  
実行時間 12 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 7,208 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-29 15:23:21
合計ジャッジ時間 1,743 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

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