結果

問題 No.921 ずんだアロー
ユーザー tentententen
提出日時 2020-08-27 01:26:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 835 bytes
コンパイル時間 2,333 ms
コンパイル使用メモリ 78,312 KB
実行使用メモリ 49,112 KB
最終ジャッジ日時 2024-11-07 14:24:57
合計ジャッジ時間 12,682 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,260 KB
testcase_01 AC 132 ms
40,864 KB
testcase_02 AC 130 ms
41,016 KB
testcase_03 AC 133 ms
41,304 KB
testcase_04 AC 131 ms
41,248 KB
testcase_05 AC 131 ms
41,264 KB
testcase_06 AC 155 ms
41,288 KB
testcase_07 AC 140 ms
41,316 KB
testcase_08 AC 131 ms
41,084 KB
testcase_09 AC 139 ms
41,188 KB
testcase_10 AC 581 ms
49,112 KB
testcase_11 AC 594 ms
49,028 KB
testcase_12 AC 325 ms
47,612 KB
testcase_13 AC 543 ms
48,380 KB
testcase_14 AC 461 ms
48,188 KB
testcase_15 AC 474 ms
47,916 KB
testcase_16 AC 228 ms
45,524 KB
testcase_17 AC 503 ms
48,976 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 571 ms
49,052 KB
testcase_24 AC 506 ms
47,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int prev = sc.nextInt();
    	int count = 1;
    	ArrayList<Integer> list = new ArrayList<>();
    	for (int i = 1; i < n; i++) {
    	    int x = sc.nextInt();
    	    if (x == prev) {
    	        count++;
    	    } else {
    	        list.add(count);
    	        count = 1;
    	        prev = x;
    	    }
    	}
    	list.add(count);
    	int length = list.size();
    	int[][] dp = new int[2][length];
    	dp[1][0] = list.get(0);
    	for (int i = 1; i < length; i++) {
    	    dp[1][i] = dp[0][i - 1] + list.get(i);
    	    dp[0][i] = Math.max(dp[0][i - 1], dp[1][i - 1]);
    	}
    	System.out.println(Math.max(dp[0][length - 1], dp[1][length - 1]));
    }
}

0