結果

問題 No.2894 Monotonic Intervals
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-20 22:39:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 107 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 81,924 KB
実行使用メモリ 86,604 KB
最終ジャッジ日時 2024-09-20 22:39:17
合計ジャッジ時間 2,343 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,120 KB
testcase_01 AC 37 ms
52,952 KB
testcase_02 AC 43 ms
52,084 KB
testcase_03 AC 45 ms
52,136 KB
testcase_04 AC 64 ms
76,276 KB
testcase_05 AC 44 ms
53,492 KB
testcase_06 AC 44 ms
51,996 KB
testcase_07 AC 64 ms
76,768 KB
testcase_08 AC 73 ms
83,232 KB
testcase_09 AC 84 ms
85,764 KB
testcase_10 AC 71 ms
82,524 KB
testcase_11 AC 88 ms
86,448 KB
testcase_12 AC 88 ms
86,604 KB
testcase_13 AC 70 ms
76,692 KB
testcase_14 AC 66 ms
76,736 KB
testcase_15 AC 58 ms
76,704 KB
testcase_16 AC 56 ms
76,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
s=input()
l=[]
for i in range(n):
	if i==0 or s[i-1]!=s[i]:
		l+=[0]
	l[-1]+=1
print(len(l))
0