結果

問題 No.1765 While Shining
ユーザー 小野寺健小野寺健
提出日時 2021-11-28 20:11:24
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 473 bytes
コンパイル時間 3,288 ms
コンパイル使用メモリ 74,840 KB
実行使用メモリ 65,448 KB
最終ジャッジ日時 2024-07-01 15:12:20
合計ジャッジ時間 16,870 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
40,976 KB
testcase_01 AC 130 ms
41,424 KB
testcase_02 AC 128 ms
41,368 KB
testcase_03 AC 128 ms
41,356 KB
testcase_04 AC 152 ms
41,628 KB
testcase_05 AC 174 ms
41,532 KB
testcase_06 AC 151 ms
41,236 KB
testcase_07 AC 151 ms
41,740 KB
testcase_08 AC 177 ms
42,304 KB
testcase_09 AC 585 ms
48,176 KB
testcase_10 AC 691 ms
53,124 KB
testcase_11 AC 587 ms
50,784 KB
testcase_12 AC 647 ms
51,736 KB
testcase_13 AC 625 ms
51,796 KB
testcase_14 AC 642 ms
52,796 KB
testcase_15 AC 700 ms
53,380 KB
testcase_16 AC 678 ms
53,292 KB
testcase_17 AC 675 ms
53,468 KB
testcase_18 AC 674 ms
52,800 KB
testcase_19 AC 690 ms
53,228 KB
testcase_20 AC 623 ms
52,332 KB
testcase_21 AC 677 ms
53,216 KB
testcase_22 AC 701 ms
53,132 KB
testcase_23 AC 671 ms
52,748 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No1765 {

	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int[] A = new int[N-1];
		for (int i=0; i < N-1; i++) {
			A[i] = scan.nextInt();
		}
		scan.close();
		int m0 = 0, m1 = 0, cnt = 0;
		for (int a : A) {
			if (a == 1) {
				cnt += 1 + m1;
				m0 = 1 + m1;
				m1 = 0;
			} else {
				cnt += m0;
				m1 = m0;
				m0 = 0;
			}
		}
		System.out.println(cnt);
	}

}
0