結果

問題 No.2894 Monotonic Intervals
ユーザー C++ C++
提出日時 2024-09-20 23:58:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 111,372 KB
最終ジャッジ日時 2024-09-20 23:58:56
合計ジャッジ時間 2,917 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,324 KB
testcase_01 AC 38 ms
53,508 KB
testcase_02 AC 44 ms
53,504 KB
testcase_03 AC 43 ms
52,224 KB
testcase_04 AC 75 ms
71,700 KB
testcase_05 AC 43 ms
52,748 KB
testcase_06 AC 44 ms
52,592 KB
testcase_07 AC 97 ms
90,820 KB
testcase_08 AC 132 ms
86,812 KB
testcase_09 AC 121 ms
96,712 KB
testcase_10 AC 98 ms
86,488 KB
testcase_11 AC 157 ms
111,192 KB
testcase_12 AC 138 ms
111,372 KB
testcase_13 AC 67 ms
76,248 KB
testcase_14 AC 68 ms
76,236 KB
testcase_15 AC 68 ms
76,172 KB
testcase_16 AC 69 ms
75,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import os, sys
if os.path.exists("input.txt"):
  sys.stdin = open('input.txt', 'r')
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

def inp(): return readline().rstrip().decode('utf-8')
def inps(): return map(int, inp().split())

import itertools
inp()
S = inp()
print(len(list(itertools.groupby(S))))
0