結果
問題 | No.218 経験値1.5倍 |
ユーザー |
![]() |
提出日時 | 2015-05-29 22:25:04 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 308 bytes |
コンパイル時間 | 1,679 ms |
コンパイル使用メモリ | 158,556 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-29 14:52:49 |
合計ジャッジ時間 | 2,830 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 31 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int,int> P; int main(void){ double a,b,c; cin >> a >> b >> c; double nb = ceil(a/b); double nc = ceil(a/c); if(nb * (2./3) >= nc) cout << "YES" << endl; else cout << "NO" << endl; return 0; }