結果

問題 No.602 隠されていたゲーム2
ユーザー gotutiyangotutiyan
提出日時 2017-12-02 00:23:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,011 bytes
コンパイル時間 774 ms
コンパイル使用メモリ 97,316 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-05-06 00:14:28
合計ジャッジ時間 6,697 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS

#include <iostream>
#include <string>
#include <vector>
#include <cmath>
#include <fstream>
#include <set>
#include <utility>
#include <algorithm>
#include <queue>
#include <stack>
#include <deque>
#include <numeric>
#include <sstream>
#include <list>
#include <map>
#include <stdlib.h>
#include <time.h>

#define rep(i,p,n) for(int i=(int)p;i<(int)n;i++)
#define repp(i,p,n) for(int i=(int)p;i>=(int)n;i--)
#define Sort(x) sort(x.begin(),x.end());
#define ll long long
#define INF 2000000000

using namespace std;

int main() {
	int n;
	cin >> n;

	vector<ll> v(n);
	rep(i, 0, n)cin >> v[i];
	Sort(v);
	ll x, y;
	cin >> x >> y;

	if (x == 0 && y == 0) {
		cout << 0 << endl;
		return 0;
	}
	else {
		ll dis = abs(x) + abs(y);
		rep(i, 0, n) {
			if (dis == v[i]) {
				cout << 1 << endl;
				return 0;
			}
		}
		rep(i, 0, n) {
			rep(j, 0, n) {
				if (dis == v[i] + v[j]) {
					cout << 2 << endl;
					return 0;
				}
			}
		}
		cout << -1 << endl;
		
	}

	
	
	return 0;
}

0