結果

問題 No.921 ずんだアロー
ユーザー htensaihtensai
提出日時 2019-12-09 21:57:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 619 ms / 2,000 ms
コード長 647 bytes
コンパイル時間 3,214 ms
コンパイル使用メモリ 73,724 KB
実行使用メモリ 48,228 KB
最終ジャッジ日時 2024-06-23 06:42:10
合計ジャッジ時間 11,983 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
40,676 KB
testcase_01 AC 129 ms
40,676 KB
testcase_02 AC 129 ms
41,268 KB
testcase_03 AC 121 ms
40,268 KB
testcase_04 AC 128 ms
41,000 KB
testcase_05 AC 114 ms
39,808 KB
testcase_06 AC 150 ms
41,940 KB
testcase_07 AC 143 ms
41,460 KB
testcase_08 AC 130 ms
41,208 KB
testcase_09 AC 137 ms
40,920 KB
testcase_10 AC 612 ms
47,516 KB
testcase_11 AC 619 ms
47,956 KB
testcase_12 AC 354 ms
47,616 KB
testcase_13 AC 445 ms
46,400 KB
testcase_14 AC 533 ms
47,464 KB
testcase_15 AC 453 ms
48,052 KB
testcase_16 AC 222 ms
45,368 KB
testcase_17 AC 550 ms
47,452 KB
testcase_18 AC 502 ms
47,468 KB
testcase_19 AC 500 ms
46,984 KB
testcase_20 AC 500 ms
47,268 KB
testcase_21 AC 508 ms
47,240 KB
testcase_22 AC 498 ms
47,372 KB
testcase_23 AC 614 ms
48,228 KB
testcase_24 AC 499 ms
47,496 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 = 0;
        long count = 0;
        boolean isZunda = false;
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            if (isZunda) {
                if (x == prev) {
                    count++;
                } else {
                    isZunda = false;
                }
            } else {
                count++;
                isZunda = true;
            }
            prev = x;
        }
        System.out.println(count);
    }
}
0