結果
| 問題 |
No.218 経験値1.5倍
|
| コンテスト | |
| ユーザー |
Takeno_hito
|
| 提出日時 | 2017-09-30 16:20:29 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 2,000 ms |
| コード長 | 316 bytes |
| コンパイル時間 | 712 ms |
| コンパイル使用メモリ | 72,652 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-29 16:11:22 |
| 合計ジャッジ時間 | 1,787 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 31 |
ソースコード
#include <iostream>
#include <random>
#include <algorithm>
#define INF 1000000000
using namespace std;
// #define int long long
signed main(){
int a,b,c;
cin >> a >> b >> c;
int S1 = (a+b-1)/b;
int S2 = (a+c-1)/c;
if(S2*3 <= S1*2){
cout << "YES" << endl;
return 0;
}
cout << "NO" << endl;
}
Takeno_hito