結果

問題 No.218 経験値1.5倍
ユーザー hryshtk
提出日時 2015-08-18 01:00:06
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 421 bytes
コンパイル時間 454 ms
コンパイル使用メモリ 64,080 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-18 10:07:43
合計ジャッジ時間 1,287 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <functional>
#include <string>
#include <limits.h>
#include <vector>
#include <numeric>
using namespace std;

int main(){
    int a,b,c;
    int test1,test2;
    cin >> a >> b >> c;
    
    test1 = (a+b-1)/b;
    test2 = (a+c-1)/c;
    
    if(2.0 / 3.0  >= test2/test1){
        cout << "YES" << endl;
    }else{
        cout << "NO" << endl;
    }
    
    return 0;
}
0