結果

問題 No.2894 Monotonic Intervals
ユーザー N-noa21N-noa21
提出日時 2024-09-20 22:09:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 114 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 76,220 KB
最終ジャッジ日時 2024-09-20 22:09:51
合計ジャッジ時間 1,941 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 48 ms
51,712 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 48 ms
59,904 KB
testcase_05 AC 42 ms
51,712 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 56 ms
71,168 KB
testcase_08 AC 62 ms
75,520 KB
testcase_09 AC 64 ms
76,160 KB
testcase_10 AC 62 ms
75,548 KB
testcase_11 AC 67 ms
75,776 KB
testcase_12 AC 67 ms
75,944 KB
testcase_13 AC 57 ms
75,648 KB
testcase_14 AC 57 ms
75,648 KB
testcase_15 AC 60 ms
76,212 KB
testcase_16 AC 55 ms
76,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
now = -1
ans = 0
for i in S:
    if now != i:
        ans += 1
    now = i
print(ans)
0