結果

問題 No.2956 Substitute with Average
ユーザー ygussanyygussany
提出日時 2024-11-08 22:28:17
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 477 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 30,336 KB
実行使用メモリ 25,856 KB
最終ジャッジ日時 2024-11-08 22:28:23
合計ジャッジ時間 2,708 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 WA -
testcase_04 AC 1 ms
5,248 KB
testcase_05 WA -
testcase_06 AC 1 ms
5,248 KB
testcase_07 WA -
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 97 ms
25,728 KB
testcase_19 AC 81 ms
25,600 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 91 ms
25,728 KB
testcase_23 AC 88 ms
25,728 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main()
{
	int i, N, A[100001];
	scanf("%d", &N);
	for (i = 1; i <= N; i++) scanf("%d", &(A[i]));
	
	int k, sum, num[6000001];
	long long ans = (long long)N * (N - 1) / 2 + 1;
	for (k = 1; k <= 30; k++) {
		for (i = 0; i <= N * 60; i++) num[i] = 0;
		for (i = 1, sum = 0, num[N*30] = 1; i <= N; i++) {
			if (A[i] == k) ans -= num[sum + N * 30] - 1;
			sum += A[i] - k;
			num[sum + N * 30]++;
		}
	}
	printf("%lld\n", ans);
	fflush(stdout);
	return 0;
}
0