結果

問題 No.1765 While Shining
ユーザー 小野寺健小野寺健
提出日時 2021-11-28 20:28:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 402 ms / 2,000 ms
コード長 475 bytes
コンパイル時間 3,414 ms
コンパイル使用メモリ 74,828 KB
実行使用メモリ 59,364 KB
最終ジャッジ日時 2024-07-01 15:26:49
合計ジャッジ時間 11,689 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,368 KB
testcase_01 AC 124 ms
41,260 KB
testcase_02 AC 125 ms
41,356 KB
testcase_03 AC 127 ms
41,224 KB
testcase_04 AC 128 ms
41,728 KB
testcase_05 AC 132 ms
41,364 KB
testcase_06 AC 126 ms
41,524 KB
testcase_07 AC 125 ms
41,480 KB
testcase_08 AC 135 ms
41,396 KB
testcase_09 AC 306 ms
51,372 KB
testcase_10 AC 400 ms
59,080 KB
testcase_11 AC 343 ms
54,824 KB
testcase_12 AC 378 ms
59,220 KB
testcase_13 AC 349 ms
54,956 KB
testcase_14 AC 392 ms
58,696 KB
testcase_15 AC 396 ms
58,836 KB
testcase_16 AC 373 ms
59,000 KB
testcase_17 AC 402 ms
58,808 KB
testcase_18 AC 386 ms
58,812 KB
testcase_19 AC 401 ms
59,196 KB
testcase_20 AC 390 ms
59,116 KB
testcase_21 AC 396 ms
59,088 KB
testcase_22 AC 395 ms
58,964 KB
testcase_23 AC 389 ms
59,364 KB
testcase_24 AC 395 ms
58,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No1765 {

	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = Integer.valueOf(scan.nextLine());
		String[] S = scan.nextLine().split(" ");
		scan.close();
		int m0 = 0, m1 = 0;
		long cnt = 0;
		for (int i = 0; i < N-1; i++) {
			if (S[i].equals("1")) {
				cnt += 1 + m1;
				m0 = 1 + m1;
				m1 = 0;
			} else {
				cnt += m0;
				m1 = m0;
				m0 = 0;
			}
		}
		System.out.println(cnt);
	}
}
0