結果

問題 No.218 経験値1.5倍
ユーザー hryshtkhryshtk
提出日時 2015-08-18 01:00:49
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 437 bytes
コンパイル時間 694 ms
コンパイル使用メモリ 64,424 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-29 15:21:27
合計ジャッジ時間 1,503 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

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  >= (double)test2/(double)test1){
        cout << "YES" << endl;
    }else{
        cout << "NO" << endl;
    }
    
    return 0;
}
0