結果
問題 | No.218 経験値1.5倍 |
ユーザー | tenkyu9 |
提出日時 | 2018-03-09 04:43:37 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 334 bytes |
コンパイル時間 | 571 ms |
コンパイル使用メモリ | 73,620 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-05 17:34:36 |
合計ジャッジ時間 | 1,631 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 31 |
ソースコード
#include<iostream> #include<string> #include<algorithm> #include<cmath> #include<iomanip> #include<cstring> #include<map> #include<vector> using namespace std; typedef long long int ll; int main(){ int a, b, c; cin >> a >> b >> c; int x=(a+b-1)/b; int y=(a+c-1)/c; cout << (x*2>=y*3 ? "YES" : "NO") << endl; return 0; }