結果

問題 No.921 ずんだアロー
ユーザー NaoppyJNaoppyJ
提出日時 2019-11-08 22:05:04
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,149 bytes
コンパイル時間 2,397 ms
コンパイル使用メモリ 79,004 KB
実行使用メモリ 51,424 KB
最終ジャッジ日時 2024-09-15 01:30:31
合計ジャッジ時間 12,136 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,096 KB
testcase_01 AC 130 ms
41,104 KB
testcase_02 AC 115 ms
39,928 KB
testcase_03 AC 127 ms
40,988 KB
testcase_04 AC 132 ms
41,256 KB
testcase_05 AC 130 ms
41,128 KB
testcase_06 AC 166 ms
41,628 KB
testcase_07 AC 143 ms
41,216 KB
testcase_08 AC 138 ms
41,504 KB
testcase_09 AC 138 ms
41,408 KB
testcase_10 AC 575 ms
50,156 KB
testcase_11 AC 579 ms
48,432 KB
testcase_12 AC 352 ms
48,004 KB
testcase_13 AC 538 ms
48,176 KB
testcase_14 AC 553 ms
51,424 KB
testcase_15 AC 481 ms
48,376 KB
testcase_16 AC 234 ms
45,684 KB
testcase_17 AC 575 ms
49,580 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 629 ms
50,376 KB
testcase_24 AC 504 ms
47,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        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();
        }

        ArrayList<Integer> list = new ArrayList<>();
        int prev = a[0];
        int count = 0;
        for (int i : a) {
            if (i == prev) {
                count++;
            } else {
                list.add(count);
                count = 1;
                prev = i;
            }
        }
        list.add(count);

//        for (int i = 0; i < list.size(); i++) {
//            System.out.print(list.get(i)+" ");
//        }
//        System.out.println();

        long[][] dp = new long[list.size() + 10][2];
        dp[0][0] = 0;
        dp[0][1] = 0;

        for (int i = 1; i <= list.size(); i++) {
            dp[i][0] = Math.max(dp[i - 1][0], dp[i - 1][1]);
            dp[i][1] = dp[i - 1][0] + list.get(i - 1);
        }

        System.out.println(Math.max(dp[list.size()][0], dp[list.size()][1]));
    }
}
0