結果

問題 No.2773 Wake up Record 1
ユーザー koukikawagoekoukikawagoe
提出日時 2024-06-07 21:58:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 181 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 73,180 KB
最終ジャッジ日時 2024-06-07 21:58:36
合計ジャッジ時間 2,273 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,740 KB
testcase_01 WA -
testcase_02 AC 36 ms
52,644 KB
testcase_03 AC 35 ms
51,956 KB
testcase_04 WA -
testcase_05 AC 52 ms
73,180 KB
testcase_06 AC 51 ms
67,260 KB
testcase_07 AC 54 ms
72,880 KB
testcase_08 AC 48 ms
66,184 KB
testcase_09 AC 53 ms
67,536 KB
testcase_10 AC 47 ms
66,440 KB
testcase_11 AC 52 ms
72,816 KB
testcase_12 AC 51 ms
69,820 KB
testcase_13 AC 47 ms
63,472 KB
testcase_14 AC 48 ms
66,524 KB
testcase_15 AC 47 ms
63,212 KB
testcase_16 AC 53 ms
73,108 KB
testcase_17 AC 57 ms
70,180 KB
testcase_18 AC 48 ms
64,520 KB
testcase_19 AC 54 ms
72,928 KB
testcase_20 AC 50 ms
64,960 KB
testcase_21 AC 54 ms
72,152 KB
testcase_22 AC 52 ms
72,532 KB
testcase_23 AC 53 ms
72,540 KB
testcase_24 AC 51 ms
68,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

c = 0

for i in range(N-1):
    if S[i]+S[i+1]== "xo":
        c+=1
print(c)
for i in range(N-1):
    if S[i]+S[i+1]== "xo":
        print(i+2,end=" ")
0