結果

問題 No.2894 Monotonic Intervals
ユーザー ks2mks2m
提出日時 2024-09-20 22:02:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 348 bytes
コンパイル時間 2,725 ms
コンパイル使用メモリ 74,356 KB
実行使用メモリ 57,420 KB
最終ジャッジ日時 2024-09-20 22:02:20
合計ジャッジ時間 8,000 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
54,020 KB
testcase_01 AC 142 ms
53,888 KB
testcase_02 AC 139 ms
53,972 KB
testcase_03 AC 138 ms
53,992 KB
testcase_04 AC 254 ms
56,704 KB
testcase_05 AC 136 ms
54,216 KB
testcase_06 AC 139 ms
54,312 KB
testcase_07 AC 236 ms
56,396 KB
testcase_08 AC 244 ms
57,420 KB
testcase_09 AC 259 ms
57,296 KB
testcase_10 AC 280 ms
57,292 KB
testcase_11 AC 269 ms
57,092 KB
testcase_12 AC 270 ms
57,088 KB
testcase_13 AC 267 ms
57,016 KB
testcase_14 AC 265 ms
56,824 KB
testcase_15 AC 255 ms
56,828 KB
testcase_16 AC 255 ms
57,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		char[] s = sc.next().toCharArray();
		sc.close();

		int ans = 1;
		for (int i = 1; i < n; i++) {
			if (s[i - 1] != s[i]) {
				ans++;
			}
		}
		System.out.println(ans);
	}
}
0