結果

問題 No.218 経験値1.5倍
ユーザー kei
提出日時 2016-08-16 11:32:33
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 212 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 54,364 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-07 18:15:41
合計ジャッジ時間 1,594 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20 WA * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main() {
	double a, b, c;
	cin >> a >> b >> c;
	if (a / c - (2.0 * a) / (3.0 * b) >= 0.0) {
		cout << "NO" << endl;
	}
	else {
		cout << "YES" << endl;
	}
	return 0;
}
0