結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 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 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
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 5 ms
5,376 KB
testcase_17 AC 9 ms
5,376 KB
testcase_18 AC 24 ms
5,376 KB
testcase_19 AC 26 ms
5,376 KB
testcase_20 AC 26 ms
5,376 KB
testcase_21 AC 18 ms
5,376 KB
testcase_22 WA -
testcase_23 AC 20 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:6:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |         scanf("%lld", &n);
      |         ~~~~~^~~~~~~~~~~~
main.cpp:8:42: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |         for (int i = 0; i < n; ++i) scanf("%lld", &d[i]);
      |                                     ~~~~~^~~~~~~~~~~~~~~
main.cpp:10:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |         scanf("%lld %lld", &x, &y);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

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

long long n, x, y, a, t, r=3;
int main() {
	scanf("%lld", &n);
	long long d[n];
	for (int i = 0; i < n; ++i) scanf("%lld", &d[i]);
	sort(d, d+n);
	scanf("%lld %lld", &x, &y);
	a = abs(x) + abs(y);
	if (a==0) {
		printf("0\n");
		return 0;
	}
	
	for (int i = 0; i < n; ++i) {
		if (d[i]==a) r = 1;
		else if (binary_search(d+i+1, d+n, abs(a-d[i])) || binary_search(d+i+1, d+n, a+d[i]))
			if (r==3) r = 2;
	}
	if (r==3) r = -1;
	printf("%lld\n", r);
}
0