結果

問題 No.921 ずんだアロー
ユーザー NaoppyJNaoppyJ
提出日時 2019-11-08 21:52:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,232 bytes
コンパイル時間 2,265 ms
コンパイル使用メモリ 78,528 KB
実行使用メモリ 48,436 KB
最終ジャッジ日時 2024-09-15 01:25:45
合計ジャッジ時間 12,259 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,092 KB
testcase_01 AC 110 ms
39,808 KB
testcase_02 AC 127 ms
41,028 KB
testcase_03 AC 112 ms
39,936 KB
testcase_04 AC 127 ms
41,088 KB
testcase_05 AC 126 ms
40,972 KB
testcase_06 AC 162 ms
41,388 KB
testcase_07 AC 143 ms
41,184 KB
testcase_08 AC 135 ms
41,324 KB
testcase_09 AC 138 ms
41,240 KB
testcase_10 AC 575 ms
48,140 KB
testcase_11 AC 635 ms
48,436 KB
testcase_12 AC 335 ms
47,376 KB
testcase_13 AC 544 ms
48,308 KB
testcase_14 AC 480 ms
47,044 KB
testcase_15 AC 488 ms
48,068 KB
testcase_16 AC 240 ms
45,608 KB
testcase_17 AC 565 ms
48,324 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 635 ms
48,308 KB
testcase_24 AC 515 ms
48,084 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);
        list.add(0);
        list.add(0);
        list.add(0);

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

        int ans = 0;

        for (int i = 0; i < list.size() - 3; i++) {
            if (list.get(i) - list.get(i + 1) >= list.get(i + 1) - list.get(i) - list.get(i + 2)) {
                ans += list.get(i);
                i++;
            } else {
                ans += list.get(i + 1);
                i+=2;
            }
        }

        System.out.println(ans);
    }
}
0