結果

問題 No.218 経験値1.5倍
ユーザー tookunn_1213
提出日時 2015-08-14 15:33:07
言語 Python2
(2.7.18)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 149 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 7,076 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-29 15:20:48
合計ジャッジ時間 1,494 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
a,b,c = input(),input(),input()
d = math.ceil(a * 1.0 / b)
e = math.ceil(a * 1.0 / c)
if d * 2.0 / 3 >= e:
	print "YES"
else:
	print "NO"
0