結果

問題 No.1765 While Shining
ユーザー pengin_2000pengin_2000
提出日時 2022-07-02 19:44:28
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 19 ms / 2,000 ms
コード長 501 bytes
コンパイル時間 1,054 ms
コンパイル使用メモリ 29,184 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 17:01:44
合計ジャッジ時間 2,833 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 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 12 ms
5,376 KB
testcase_10 AC 17 ms
5,376 KB
testcase_11 AC 14 ms
5,376 KB
testcase_12 AC 16 ms
5,376 KB
testcase_13 AC 15 ms
5,376 KB
testcase_14 AC 19 ms
5,376 KB
testcase_15 AC 18 ms
5,376 KB
testcase_16 AC 18 ms
5,376 KB
testcase_17 AC 18 ms
5,376 KB
testcase_18 AC 18 ms
5,376 KB
testcase_19 AC 19 ms
5,376 KB
testcase_20 AC 18 ms
5,376 KB
testcase_21 AC 18 ms
5,376 KB
testcase_22 AC 18 ms
5,376 KB
testcase_23 AC 18 ms
5,376 KB
testcase_24 AC 16 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
int a[200005];
int ans[200005];
int main()
{
	int n;
	scanf("%d", &n);
	int i;
	for (i = 0; i < n; i++)
		scanf("%d", &a[i]);
	ans[n - 1] = 0;
	if (n > 1)
	{
		if (a[n - 2] > 0)
			ans[n - 2] = 1;
		else
			ans[n - 2] = 0;
	}
	for (i = n - 3; i >= 0; i--)
	{
		if (a[i] > 0 && a[i + 1] == 0)
			ans[i] = ans[i + 2] + 2;
		else if (a[i] > 0)
			ans[i] = 1;
		else
			ans[i] = 0;
	}
	long long int res = 0;
	for (i = 0; i < n; i++)
		res += ans[i];
	printf("%lld\n", res);
	return 0;
}
0