結果
問題 | No.218 経験値1.5倍 |
ユーザー | chacoder1 |
提出日時 | 2021-04-15 20:09:19 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 298 bytes |
コンパイル時間 | 1,912 ms |
コンパイル使用メモリ | 192,060 KB |
最終ジャッジ日時 | 2025-01-20 17:49:24 |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 31 |
ソースコード
#include "bits/stdc++.h" using namespace std; typedef long long ll; #define rep(i,n) for(int i=0;i<n;i++) signed main() { int a,b,c; cin>>a>>b>>c; //cout<<(a+b-1)/b<<endl; //cout<<(a+c-1)/c<<endl; if(((a+b-1)/b)*2 >= ((a+c-1)/c)*3){ cout<<"YES"<<endl; } else cout<<"NO"<<endl; }