結果

問題 No.2894 Monotonic Intervals
ユーザー 高橋ゆに高橋ゆに
提出日時 2024-11-05 21:25:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 149 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 76,140 KB
最終ジャッジ日時 2024-11-05 21:25:18
合計ジャッジ時間 2,188 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,068 KB
testcase_01 AC 35 ms
52,952 KB
testcase_02 AC 36 ms
52,616 KB
testcase_03 AC 36 ms
52,620 KB
testcase_04 AC 44 ms
62,008 KB
testcase_05 AC 36 ms
52,488 KB
testcase_06 AC 36 ms
52,224 KB
testcase_07 AC 48 ms
67,488 KB
testcase_08 AC 47 ms
68,336 KB
testcase_09 AC 52 ms
74,480 KB
testcase_10 AC 48 ms
67,744 KB
testcase_11 AC 58 ms
75,932 KB
testcase_12 AC 56 ms
76,140 KB
testcase_13 AC 46 ms
61,756 KB
testcase_14 AC 48 ms
63,448 KB
testcase_15 AC 47 ms
63,024 KB
testcase_16 AC 46 ms
61,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
curr = S[0]

ans = 1
for i in range(N - 1):
    if curr != S[i + 1]:
        curr = S[i + 1]
        ans += 1
print(ans)
0