結果
問題 |
No.218 経験値1.5倍
|
ユーザー |
![]() |
提出日時 | 2016-08-06 10:38:38 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 222 bytes |
コンパイル時間 | 588 ms |
コンパイル使用メモリ | 53,240 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 02:58:34 |
合計ジャッジ時間 | 1,757 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 24 WA * 7 |
ソースコード
#include <iostream> using namespace std; int main(){ int a,b,c,d; cin >> a >> b >> c; d = a / b * 2 / 3 ; if(d * c > a) cout << "YES" << "\n"; else if(d * c == a) cout << "YES" << "\n"; else cout << "NO" << "\n"; }