結果

問題 No.2773 Wake up Record 1
ユーザー miho-4miho-4
提出日時 2024-06-07 22:34:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 134 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 71,172 KB
最終ジャッジ日時 2024-06-07 22:34:33
合計ジャッジ時間 2,156 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,404 KB
testcase_01 AC 35 ms
52,164 KB
testcase_02 AC 34 ms
52,276 KB
testcase_03 AC 34 ms
53,128 KB
testcase_04 AC 34 ms
52,480 KB
testcase_05 AC 50 ms
69,768 KB
testcase_06 AC 49 ms
65,120 KB
testcase_07 AC 53 ms
70,592 KB
testcase_08 AC 53 ms
67,032 KB
testcase_09 AC 50 ms
66,960 KB
testcase_10 AC 49 ms
65,844 KB
testcase_11 AC 59 ms
69,224 KB
testcase_12 AC 50 ms
67,724 KB
testcase_13 AC 46 ms
64,332 KB
testcase_14 AC 50 ms
67,516 KB
testcase_15 AC 42 ms
60,552 KB
testcase_16 AC 49 ms
71,172 KB
testcase_17 AC 50 ms
68,024 KB
testcase_18 AC 46 ms
64,348 KB
testcase_19 AC 51 ms
71,056 KB
testcase_20 AC 47 ms
64,360 KB
testcase_21 AC 51 ms
68,880 KB
testcase_22 AC 52 ms
70,476 KB
testcase_23 AC 51 ms
69,380 KB
testcase_24 AC 48 ms
67,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
L=str(input())
ans=[]
for i in range(1,n):
	if L[i-1]=="x" and L[i]=="o":
		ans.append(i+1)
print(len(ans))
print(*ans)
0