結果

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

ソースコード

diff #
raw source code

#coding:utf-8

from fractions import Fraction
from math import ceil

a=float(input())
b=input()
c=input()

nml_cost=ceil(a/b)
nml_cost_rate=nml_cost*Fraction(2,3)
spe_cost=ceil(a/c)

if nml_cost_rate < spe_cost:
	print 'NO'
else:
	print 'YES'
0