結果

問題 No.1944 ∞
ユーザー pengin_2000pengin_2000
提出日時 2022-08-20 17:17:35
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 24 ms / 2,000 ms
コード長 690 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 30,848 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-17 15:34:02
合計ジャッジ時間 1,315 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
5,248 KB
testcase_01 AC 1 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 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 24 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 19 ms
5,376 KB
testcase_34 AC 18 ms
5,376 KB
testcase_35 AC 18 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
long long int r[200005];
int main()
{
	long long int n, x, y;
	scanf("%lld %lld %lld", &n, &x, &y);
	long long int i;
	for (i = 0; i < n; i++)
		scanf("%lld", &r[i]);
	if (n == 1)
	{
		if (x * x + y * y == r[0] * r[0])
			printf("Yes\n");
		else
			printf("No\n");
		return 0;
	}
	long long int sum = 0;
	for (i = 0; i < n; i++)
		sum += r[i];
	sum *= 2;
	long long int min = r[0];
	for (i = 0; i < n; i++)
		if (min > r[i])
			min = r[i];
	sum -= min;
	long long int d = x * x + y * y;
	if (d % sum == 0)
	{
		if (d / sum <= sum)
			printf("Yes\n");
		else
			printf("No\n");
	}
	else
	{
		if (d / sum >= sum)
			printf("No\n");
		else
			printf("Yes\n");
	}
	return 0;
}
0