結果

問題 No.602 隠されていたゲーム2
ユーザー creep04creep04
提出日時 2017-12-02 03:01:18
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 434 bytes
コンパイル時間 2,454 ms
コンパイル使用メモリ 160,096 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 00:51:05
合計ジャッジ時間 2,804 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 6 ms
5,376 KB
testcase_17 AC 8 ms
5,376 KB
testcase_18 AC 18 ms
5,376 KB
testcase_19 AC 22 ms
5,376 KB
testcase_20 AC 29 ms
5,376 KB
testcase_21 AC 17 ms
5,376 KB
testcase_22 WA -
testcase_23 AC 19 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int n, x, y, a, t, r=-1;
int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);
	
	cin >> n;
	int d[n];
	for (int i = 0; i < n; ++i) cin >> d[i];
	sort(d, d+n);
	cin >> x >> y;
	a = abs(x) + abs(y);
	for (int i = 0; i < n; ++i) {
		if (d[i]==a) r = 1;
		else if (binary_search(d, d+n, abs(a-d[i])) || binary_search(d, d+n, a+d[i]))
			r = 2;
		if (r!=-1) break;
	}
	cout << r << "\n";
}
0