結果

問題 No.218 経験値1.5倍
ユーザー tookunn_1213
提出日時 2015-07-01 23:23:14
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 129 bytes
コンパイル時間 68 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-07 21:48:53
合計ジャッジ時間 1,111 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c = input(),input(),input()
normal = a / b
sale = a * 1.0 / c * 1.0
if normal * 2 / 3 >= sale:
	print "YES"
else:
	print "NO"
0