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