結果

問題 No.1586 Equal Array
ユーザー rainyrainy
提出日時 2021-07-21 13:15:48
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 250 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 27,800 KB
実行使用メモリ 4,500 KB
最終ジャッジ日時 2023-09-24 13:05:58
合計ジャッジ時間 1,482 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<stdio.h>

int main(void) {
	int N;
	long A[100001];
	long long sum = 0;
	scanf("%d", &N);
	for (int i = 0; i < N; i++) {
		scanf("%d", &A[i]);
		sum += A[i];
	}
	if (sum%N == 0) {
		printf("Yes\n");
	}else {
		printf("No\n");
	}
	return 0;
}
0