結果

問題 No.514 宝探し3
ユーザー takubokudoritakubokudori
提出日時 2017-09-04 18:54:23
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 990 bytes
コンパイル時間 648 ms
コンパイル使用メモリ 86,316 KB
実行使用メモリ 24,264 KB
平均クエリ数 2.83
最終ジャッジ日時 2023-09-23 14:30:59
合計ジャッジ時間 2,967 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
23,628 KB
testcase_01 AC 23 ms
23,364 KB
testcase_02 AC 24 ms
23,976 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 23 ms
23,940 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 23 ms
23,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <functional>
#include <iostream>
#include <iterator>
#include <limits>
#include <list>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <utility>
#include <valarray>
#include <vector>

#define N 1000
#define MOD 1000000007
#define pe(str) return cout<<(str)<<endl,0
#define px(str) {cout<<(str)<<endl;exit(0);}
#define re(i,n) for(int i=0;i<(n);i++)
#define rep(i,a,b) for(int i=(a);i<(b);i++)
#define fe(i,n,f) for_each(i,n,f)
#define bw(a,b,c) (((a)<=(b))&&((b)<=(c)))
using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef pair<int,int> pii;

ll q(ll x,ll y){
	ll a;
	cout<<x<<" "<<y<<endl;
	cin>>a;
	// a=abs(rx-x)+abs(ry-y);
	// cout<<a<<endl;
	if(a==0)exit(0);
	return a;
}
int main(void){
	ll a=q(0,0),b=q(100000,0);
	q((a-b+100000)/2,(a+b-100000)/2);

	return 0;
}
0