結果
問題 |
No.218 経験値1.5倍
|
ユーザー |
|
提出日時 | 2020-09-16 12:49:54 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 252 bytes |
コンパイル時間 | 505 ms |
コンパイル使用メモリ | 68,148 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-22 03:09:04 |
合計ジャッジ時間 | 1,277 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 31 |
ソースコード
#include<iostream> #include<cmath> using namespace std; int main(){ int a,b,c; cin >> a >> b >> c; int ex1 = (a+b-1)/b; int ex2 = (a+c-1)/c; if(2*ex1 >= 3*ex2) cout << "Yes" << endl; else cout << "No" << endl; return 0; }