結果

問題 No.921 ずんだアロー
ユーザー poi_kyopropoi_kyopro
提出日時 2019-11-08 22:04:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 574 ms / 2,000 ms
コード長 725 bytes
コンパイル時間 2,154 ms
コンパイル使用メモリ 73,716 KB
実行使用メモリ 48,428 KB
最終ジャッジ日時 2024-09-15 01:30:01
合計ジャッジ時間 11,897 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
40,988 KB
testcase_01 AC 127 ms
41,088 KB
testcase_02 AC 113 ms
39,832 KB
testcase_03 AC 131 ms
41,052 KB
testcase_04 AC 115 ms
40,152 KB
testcase_05 AC 127 ms
41,004 KB
testcase_06 AC 155 ms
41,408 KB
testcase_07 AC 138 ms
41,456 KB
testcase_08 AC 119 ms
40,204 KB
testcase_09 AC 140 ms
41,388 KB
testcase_10 AC 487 ms
46,976 KB
testcase_11 AC 574 ms
48,212 KB
testcase_12 AC 311 ms
46,420 KB
testcase_13 AC 529 ms
48,244 KB
testcase_14 AC 530 ms
48,428 KB
testcase_15 AC 432 ms
47,800 KB
testcase_16 AC 221 ms
45,680 KB
testcase_17 AC 560 ms
48,072 KB
testcase_18 AC 504 ms
47,832 KB
testcase_19 AC 498 ms
47,252 KB
testcase_20 AC 496 ms
47,168 KB
testcase_21 AC 477 ms
46,980 KB
testcase_22 AC 529 ms
47,804 KB
testcase_23 AC 514 ms
47,520 KB
testcase_24 AC 511 ms
47,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String args[]){
        Scanner stdIn = new Scanner(System.in);
        int n = stdIn.nextInt();
        int sum = 1;
        int size[] = new int[n];
        boolean flag = true;
        
        for(int i = 0; i < n; i++){
            size[i] = stdIn.nextInt();
        }
        
        for(int i = 1; i < n; i++){
            if(flag){
                if(size[i] == size[i - 1]){
                    sum++;
                }else{
                    flag = false;
                }
            }else{
                sum++;
                flag = true;
            }
        }
        
        System.out.println(sum);
        
        
    }
}
0