結果
問題 |
No.218 経験値1.5倍
|
ユーザー |
![]() |
提出日時 | 2015-06-23 00:42:12 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 212 bytes |
コンパイル時間 | 488 ms |
コンパイル使用メモリ | 59,788 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-07 16:53:01 |
合計ジャッジ時間 | 1,560 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 25 WA * 6 |
ソースコード
#include<iostream> #include<cmath> using namespace std; int main() { float a, b, c; cin >> a >> b >> c; if (ceil(a / c) <= (a / b * 2 / 3)){ cout << "YES" << endl; } else{ cout << "NO" << endl; } return 0; }