結果

問題 No.2773 Wake up Record 1
ユーザー ああいいああいい
提出日時 2024-06-12 10:59:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 146 bytes
コンパイル時間 715 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 71,236 KB
最終ジャッジ日時 2024-06-12 10:59:42
合計ジャッジ時間 3,697 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,644 KB
testcase_01 AC 32 ms
52,832 KB
testcase_02 AC 34 ms
51,880 KB
testcase_03 AC 34 ms
52,076 KB
testcase_04 AC 33 ms
51,700 KB
testcase_05 AC 48 ms
69,780 KB
testcase_06 AC 47 ms
65,688 KB
testcase_07 AC 50 ms
70,180 KB
testcase_08 AC 48 ms
65,976 KB
testcase_09 AC 48 ms
66,544 KB
testcase_10 AC 46 ms
65,268 KB
testcase_11 AC 52 ms
69,164 KB
testcase_12 AC 47 ms
67,956 KB
testcase_13 AC 45 ms
63,936 KB
testcase_14 AC 52 ms
66,408 KB
testcase_15 AC 40 ms
59,916 KB
testcase_16 AC 48 ms
70,292 KB
testcase_17 AC 48 ms
67,756 KB
testcase_18 AC 44 ms
64,880 KB
testcase_19 AC 51 ms
71,236 KB
testcase_20 AC 45 ms
63,740 KB
testcase_21 AC 51 ms
69,876 KB
testcase_22 AC 51 ms
70,304 KB
testcase_23 AC 50 ms
69,452 KB
testcase_24 AC 47 ms
68,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = []
for i in range(N - 1):
	if S[i] == "x" and S[i + 1] == "o":
		ans.append(i + 2)
print(len(ans))
print(*ans)
0