結果
| 問題 |
No.218 経験値1.5倍
|
| コンテスト | |
| ユーザー |
tubo28
|
| 提出日時 | 2015-05-30 10:47:11 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 213 bytes |
| コンパイル時間 | 418 ms |
| コンパイル使用メモリ | 54,796 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-07-06 12:40:53 |
| 合計ジャッジ時間 | 1,409 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 31 |
ソースコード
#include <iostream>
#include <cstdio>
using namespace std;
int main(){
int a,b,c;
cin >> a >> b >> c;
int x = (a+b-1)/b;
int y = (a+c-1)/c;
cout << x << " " << y << endl;
puts(x*2 >= y*3 ? "YES" : "NO");
}
tubo28