結果
| 問題 | No.218 経験値1.5倍 |
| コンテスト | |
| ユーザー |
tubo28
|
| 提出日時 | 2015-05-30 10:47:11 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 213 bytes |
| 記録 | |
| コンパイル時間 | 361 ms |
| コンパイル使用メモリ | 71,620 KB |
| 実行使用メモリ | 7,848 KB |
| 最終ジャッジ日時 | 2026-03-28 01:54:37 |
| 合計ジャッジ時間 | 1,293 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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