結果

問題 No.2773 Wake up Record 1
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-06-07 21:24:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 108 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 74,624 KB
最終ジャッジ日時 2024-06-07 21:24:25
合計ジャッジ時間 2,209 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,376 KB
testcase_01 AC 36 ms
53,440 KB
testcase_02 AC 35 ms
52,216 KB
testcase_03 AC 35 ms
52,756 KB
testcase_04 AC 35 ms
52,244 KB
testcase_05 AC 55 ms
74,612 KB
testcase_06 AC 48 ms
66,824 KB
testcase_07 AC 53 ms
73,708 KB
testcase_08 AC 52 ms
68,100 KB
testcase_09 AC 49 ms
68,272 KB
testcase_10 AC 48 ms
67,916 KB
testcase_11 AC 55 ms
73,516 KB
testcase_12 AC 50 ms
69,388 KB
testcase_13 AC 45 ms
64,592 KB
testcase_14 AC 48 ms
67,688 KB
testcase_15 AC 41 ms
61,432 KB
testcase_16 AC 61 ms
73,468 KB
testcase_17 AC 50 ms
72,092 KB
testcase_18 AC 46 ms
64,556 KB
testcase_19 AC 52 ms
74,624 KB
testcase_20 AC 47 ms
64,960 KB
testcase_21 AC 51 ms
71,464 KB
testcase_22 AC 51 ms
72,656 KB
testcase_23 AC 52 ms
72,976 KB
testcase_24 AC 49 ms
69,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
s=input()
a=[]
for i in range(1,n):
	if s[i-1]+s[i]=="xo":
		a+=[i+1]
print(len(a))
print(*a)
0