結果
問題 |
No.218 経験値1.5倍
|
ユーザー |
![]() |
提出日時 | 2016-08-06 14:01:13 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 180 bytes |
コンパイル時間 | 509 ms |
コンパイル使用メモリ | 53,724 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-07 03:11:15 |
合計ジャッジ時間 | 1,458 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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 cout << "NO" << "\n"; }