結果

問題 No.218 経験値1.5倍
ユーザー kekenxkekenx
提出日時 2020-03-14 17:20:30
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 1,993 ms
コンパイル使用メモリ 166,824 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-23 21:15:58
合計ジャッジ時間 2,789 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int main() {
  int a, b, c;
  cin >> a >> b >> c;
  int n = ceil((double)a / b);
  int m = ceil((double)a / c);
  if ((double)m / n <= 2. / 3) puts("YES");
  else puts("NO");
  return 0;
}
0