結果

問題 No.513 宝探し2
コンテスト
ユーザー Yasufu12
提出日時 2017-05-05 23:27:07
言語 C++11
(gcc 15.2.0 + boost 1.90.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 74 ms / 2,000 ms
+ 1µs
コード長 374 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 277 ms
コンパイル使用メモリ 70,500 KB
実行使用メモリ 7,852 KB
平均クエリ数 2.92
最終ジャッジ日時 2026-08-14 21:33:39
合計ジャッジ時間 1,574 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <iostream>

using namespace std;

int dis[2], ansx = 0, ansy = 0;

int main(){
	cout << 0 << " " << 0 << endl;
	cin >> dis[0];
	cout << 100000 << " " << 0 << endl;
	cin >> dis[1];

	for (int i = 0; i <= 100000; i++){
		if (dis[0] + dis[1] - i * 2 == 100000){
			ansy = i;
			break;
		}
	}

	ansx = dis[0] - ansy;

	cout << ansx << " " << ansy << endl;

	return 0;
}
0