結果

問題 No.1765 While Shining
ユーザー monakamonaka
提出日時 2022-01-02 06:51:35
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 574 bytes
コンパイル時間 2,841 ms
コンパイル使用メモリ 78,184 KB
実行使用メモリ 64,376 KB
最終ジャッジ日時 2024-10-11 04:03:33
合計ジャッジ時間 17,464 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
46,728 KB
testcase_01 AC 128 ms
41,608 KB
testcase_02 AC 126 ms
41,388 KB
testcase_03 AC 128 ms
41,508 KB
testcase_04 AC 149 ms
41,588 KB
testcase_05 AC 172 ms
42,000 KB
testcase_06 AC 163 ms
42,172 KB
testcase_07 AC 149 ms
41,476 KB
testcase_08 AC 173 ms
42,132 KB
testcase_09 AC 563 ms
48,496 KB
testcase_10 AC 628 ms
51,968 KB
testcase_11 AC 611 ms
48,896 KB
testcase_12 AC 626 ms
52,400 KB
testcase_13 AC 628 ms
51,716 KB
testcase_14 AC 650 ms
50,928 KB
testcase_15 AC 662 ms
52,788 KB
testcase_16 AC 614 ms
50,032 KB
testcase_17 AC 667 ms
53,212 KB
testcase_18 AC 653 ms
53,504 KB
testcase_19 AC 683 ms
52,840 KB
testcase_20 AC 661 ms
52,844 KB
testcase_21 AC 663 ms
53,764 KB
testcase_22 AC 685 ms
53,148 KB
testcase_23 AC 686 ms
53,896 KB
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	static Scanner scan = new Scanner(System.in);
	
	public static void main(String[] args) {
		final int n = scan.nextInt();
		final int[] arr = new int[n];
		long ans = 0;
		for(int i=0; i<n; i++) {
			arr[i] = scan.nextInt();
		}
		for(int i=0; i<n; i++) {
		    ans += move(arr, n-1, i);   
		}
		System.out.println(ans);
	}
	static long move(int[] arr, int n , int i) {
		int j = i;
		while(true) {
			if(j >= n) { j = n; break; }
			if(arr[j] == 0) break;
			if(arr[j+1] == 1) { j++; break; }
			j+=2;
		}
		return j-i;
	}
}
0