結果

問題 No.921 ずんだアロー
ユーザー ks2mks2m
提出日時 2019-11-08 22:05:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 656 bytes
コンパイル時間 2,574 ms
コンパイル使用メモリ 73,064 KB
実行使用メモリ 48,708 KB
最終ジャッジ日時 2024-09-15 01:30:13
合計ジャッジ時間 6,686 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,680 KB
testcase_01 AC 51 ms
36,872 KB
testcase_02 AC 52 ms
36,572 KB
testcase_03 AC 51 ms
36,568 KB
testcase_04 AC 51 ms
36,688 KB
testcase_05 AC 51 ms
36,540 KB
testcase_06 AC 53 ms
36,408 KB
testcase_07 AC 51 ms
36,436 KB
testcase_08 AC 52 ms
36,304 KB
testcase_09 AC 52 ms
36,280 KB
testcase_10 AC 217 ms
48,476 KB
testcase_11 AC 211 ms
48,516 KB
testcase_12 AC 115 ms
40,208 KB
testcase_13 AC 179 ms
44,976 KB
testcase_14 AC 200 ms
45,872 KB
testcase_15 AC 156 ms
44,688 KB
testcase_16 AC 92 ms
38,604 KB
testcase_17 AC 199 ms
48,312 KB
testcase_18 AC 214 ms
48,672 KB
testcase_19 AC 220 ms
48,680 KB
testcase_20 AC 222 ms
48,700 KB
testcase_21 AC 217 ms
48,436 KB
testcase_22 AC 204 ms
48,708 KB
testcase_23 AC 214 ms
48,556 KB
testcase_24 AC 214 ms
48,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		String[] sa = br.readLine().split(" ");
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		int ans = 1;
		boolean flg = true;
		for (int i = 1; i < n; i++) {
			if (flg) {
				if (a[i] == a[i - 1]) {
					ans++;
				} else {
					flg = false;
				}
			} else {
				ans++;
				flg = true;
			}
		}
		System.out.println(ans);
	}
}
0