結果

問題 No.2894 Monotonic Intervals
ユーザー detteiuudetteiuu
提出日時 2024-09-20 21:26:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 129 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 76,308 KB
最終ジャッジ日時 2024-09-20 21:26:30
合計ジャッジ時間 1,971 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,504 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 37 ms
52,828 KB
testcase_03 AC 38 ms
52,816 KB
testcase_04 AC 55 ms
76,008 KB
testcase_05 AC 37 ms
52,568 KB
testcase_06 AC 37 ms
52,800 KB
testcase_07 AC 50 ms
72,496 KB
testcase_08 AC 56 ms
75,768 KB
testcase_09 AC 59 ms
75,824 KB
testcase_10 AC 55 ms
75,668 KB
testcase_11 AC 61 ms
76,308 KB
testcase_12 AC 59 ms
76,064 KB
testcase_13 AC 55 ms
76,020 KB
testcase_14 AC 56 ms
76,012 KB
testcase_15 AC 56 ms
75,960 KB
testcase_16 AC 56 ms
76,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()

ans = 0
pre = ""
for i in range(N):
    if S[i] != pre:
        ans += 1
    pre = S[i]

print(ans)
0