結果
| 問題 | No.218 経験値1.5倍 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-12-06 18:43:21 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 285 bytes |
| 記録 | |
| コンパイル時間 | 488 ms |
| コンパイル使用メモリ | 77,220 KB |
| 実行使用メモリ | 7,972 KB |
| 最終ジャッジ日時 | 2026-06-03 09:48:14 |
| 合計ジャッジ時間 | 2,088 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 31 |
ソースコード
#include <iostream>
#include <cmath>
using namespace std;
int main(){
cin.tie(0);
ios::sync_with_stdio(false);
double a, b, c;
int num_b, num_c;
cin >> a >> b >> c;
num_b=ceil(a/b);
num_c=ceil(a/c);
cout << ( (num_b*2/3.0 < num_c) ? "NO\n" : "YES\n" );
return 0;
}