結果

問題 No.514 宝探し3
ユーザー e869120e869120
提出日時 2017-05-05 22:24:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 461 bytes
コンパイル時間 563 ms
コンパイル使用メモリ 68,084 KB
実行使用メモリ 25,716 KB
平均クエリ数 5.00
最終ジャッジ日時 2024-07-16 12:52:44
合計ジャッジ時間 1,675 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
24,836 KB
testcase_01 AC 21 ms
24,836 KB
testcase_02 AC 21 ms
25,716 KB
testcase_03 AC 23 ms
25,220 KB
testcase_04 AC 21 ms
24,580 KB
testcase_05 AC 22 ms
25,208 KB
testcase_06 AC 21 ms
24,580 KB
testcase_07 AC 21 ms
24,836 KB
testcase_08 AC 21 ms
24,568 KB
testcase_09 AC 21 ms
25,220 KB
testcase_10 AC 21 ms
25,220 KB
testcase_11 AC 22 ms
24,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<string>
#include<vector>
using namespace std;
long long X = 0, Y = 0;
int main() {
	long long A = 0;
	cout << "0 -1000000000" << endl;
	cin >> A;
	long long B = 0;
	cout << "0 1000000000" << endl;
	cin >> B;
	Y = (A - B) / 2;
	long long C = 0;
	cout << "-1000000000 0" << endl;
	cin >> C;
	long long D = 0;
	cout << "1000000000 0" << endl;
	cin >> D;
	X = (C - D) / 2;
	cout << X << ' ' << Y << endl;
	return 0;
}
0