結果
| 問題 |
No.513 宝探し2
|
| コンテスト | |
| ユーザー |
kosakkun
|
| 提出日時 | 2017-05-09 18:29:09 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 819 bytes |
| コンパイル時間 | 640 ms |
| コンパイル使用メモリ | 82,024 KB |
| 実行使用メモリ | 25,952 KB |
| 平均クエリ数 | 2.83 |
| 最終ジャッジ日時 | 2024-07-16 13:38:27 |
| 合計ジャッジ時間 | 2,841 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 3 WA * 9 |
ソースコード
#include <iostream>
#include <string>
#include <vector>
#include <queue>
#include <stack>
#include <map>
#include <algorithm>
#include <sstream>
#include <cmath>
#include <set>
using namespace std;
#define REP(i,n) for(int (i)=0;(i)<(int)(n);(i)++)
#define REMOVE(Itr,n) (Itr).erase(remove((Itr).begin(),(Itr).end(),n),(Itr).end())
#define PB_VEC(Itr1,Itr2) (Itr1).insert((Itr1).end(),(Itr2).begin(),(Itr2).end())
typedef long long ll;
#define MAX_V 1000000000
int main(){
int dist1,dist2;
cout << 0 << " " << 0 << endl;
cin >> dist1;
if(dist1 == 0) return 0;
cout << 0 << " " << MAX_V << endl;
cin >> dist2;
if(dist2 == 0) return 0;
int ans_y = (dist1 + dist2 - MAX_V) / 2;
int ans_x = dist1 - ans_y;
cout << ans_x << " " << ans_y << endl;
return 0;
}
kosakkun