結果

問題 No.2894 Monotonic Intervals
ユーザー loop0919loop0919
提出日時 2024-09-11 00:33:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 90 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 110,608 KB
最終ジャッジ日時 2024-09-11 00:33:52
合計ジャッジ時間 2,664 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,136 KB
testcase_01 AC 40 ms
52,092 KB
testcase_02 AC 38 ms
52,960 KB
testcase_03 AC 38 ms
51,900 KB
testcase_04 AC 65 ms
71,572 KB
testcase_05 AC 39 ms
52,828 KB
testcase_06 AC 37 ms
52,028 KB
testcase_07 AC 80 ms
89,676 KB
testcase_08 AC 84 ms
86,476 KB
testcase_09 AC 127 ms
110,376 KB
testcase_10 AC 83 ms
85,716 KB
testcase_11 AC 133 ms
110,488 KB
testcase_12 AC 134 ms
110,608 KB
testcase_13 AC 68 ms
75,892 KB
testcase_14 AC 69 ms
75,716 KB
testcase_15 AC 69 ms
75,668 KB
testcase_16 AC 68 ms
75,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import groupby

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

print(len(list(groupby(S))))
0