結果

問題 No.218 経験値1.5倍
ユーザー tadanoningen
提出日時 2020-09-16 12:32:45
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 261 bytes
コンパイル時間 492 ms
コンパイル使用メモリ 67,352 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-22 03:08:31
合計ジャッジ時間 1,528 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cmath>

using  namespace std;

int main(){
    double a,b,c;
    cin >> a >> b >> c;
    double ex1 = ceil(a/b);
    double ex2 = ceil(a/c);
    if(2*ex1 >= 3*ex2) cout << "Yes" << endl;
    else cout << "No" << endl;
    return 0;
}
0