結果

問題 No.1765 While Shining
ユーザー ks2mks2m
提出日時 2021-11-26 22:36:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 727 ms / 2,000 ms
コード長 798 bytes
コンパイル時間 2,041 ms
コンパイル使用メモリ 77,540 KB
実行使用メモリ 53,540 KB
最終ジャッジ日時 2024-06-29 18:15:40
合計ジャッジ時間 15,290 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,320 KB
testcase_01 AC 130 ms
40,964 KB
testcase_02 AC 132 ms
41,328 KB
testcase_03 AC 130 ms
41,168 KB
testcase_04 AC 148 ms
41,596 KB
testcase_05 AC 174 ms
42,192 KB
testcase_06 AC 152 ms
41,428 KB
testcase_07 AC 152 ms
41,548 KB
testcase_08 AC 172 ms
42,536 KB
testcase_09 AC 587 ms
48,200 KB
testcase_10 AC 668 ms
52,672 KB
testcase_11 AC 647 ms
50,832 KB
testcase_12 AC 584 ms
50,956 KB
testcase_13 AC 643 ms
50,676 KB
testcase_14 AC 714 ms
52,832 KB
testcase_15 AC 676 ms
52,976 KB
testcase_16 AC 712 ms
52,600 KB
testcase_17 AC 727 ms
52,796 KB
testcase_18 AC 679 ms
52,676 KB
testcase_19 AC 707 ms
50,696 KB
testcase_20 AC 667 ms
52,940 KB
testcase_21 AC 675 ms
52,904 KB
testcase_22 AC 664 ms
53,540 KB
testcase_23 AC 692 ms
52,472 KB
testcase_24 AC 594 ms
53,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}
		sc.close();

		if (n == 1) {
			System.out.println(0);
			return;
		}

		long[] num = new long[n + 1];
		num[1] = 1;
		num[2] = 2;
		for (int i = 3; i < num.length; i++) {
			num[i] = num[i - 2] + i;
		}

		long ans = 0;
		int cnt = 0;
		for (int i = 0; i < n - 1; i++) {
			if (cnt % 2 == 0) {
				if (a[i] == 1) {
					cnt++;
				} else {
					ans += num[cnt];
					cnt = 0;
				}
			} else {
				if (a[i] == 1) {
					ans += num[cnt];
					cnt = 1;
				} else {
					cnt++;
				}
			}
		}
		ans += num[cnt];
		System.out.println(ans);
	}
}
0