結果

問題 No.218 経験値1.5倍
ユーザー 184
提出日時 2015-12-05 23:36:57
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 147 bytes
コンパイル時間 450 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-09-14 14:32:18
合計ジャッジ時間 1,852 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 29 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

a = input()
b = input()
c = input()
x1 = a/b + 1 if a%b!=0 else 0
x2 = a/c + 1 if a%c!=0 else 0
if x1*2>=x2*3:
    print "YES"
else:
    print "NO"
0