結果
問題 | No.218 経験値1.5倍 |
ユーザー |
![]() |
提出日時 | 2015-05-29 22:39:59 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 354 bytes |
コンパイル時間 | 1,943 ms |
コンパイル使用メモリ | 158,624 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-29 15:00:58 |
合計ジャッジ時間 | 2,859 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 31 |
ソースコード
#include <bits/stdc++.h> inline long nextInt(void) { long temp; std::cin >> temp; return temp; } int main() { int a, b, c; int x1, x2; std::cin >> a >> b >> c; x1 = (a+b-1) / b; x2 = (a+c-1) / c; if( x1 * 2 >= x2 * 3 ) { std::cout << "YES" << std::endl; } else { std::cout << "NO" << std::endl; } return 0; }