結果

問題 No.2773 Wake up Record 1
ユーザー koukikawagoekoukikawagoe
提出日時 2024-06-07 21:28:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 182 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 72,064 KB
最終ジャッジ日時 2024-06-07 21:28:45
合計ジャッジ時間 2,425 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 WA -
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 WA -
testcase_05 AC 59 ms
71,552 KB
testcase_06 AC 59 ms
65,664 KB
testcase_07 AC 59 ms
71,936 KB
testcase_08 AC 54 ms
65,920 KB
testcase_09 AC 55 ms
66,176 KB
testcase_10 AC 55 ms
65,152 KB
testcase_11 AC 59 ms
70,528 KB
testcase_12 AC 57 ms
67,840 KB
testcase_13 AC 53 ms
62,720 KB
testcase_14 AC 54 ms
65,664 KB
testcase_15 AC 50 ms
61,568 KB
testcase_16 AC 59 ms
71,936 KB
testcase_17 AC 58 ms
68,864 KB
testcase_18 AC 53 ms
63,232 KB
testcase_19 AC 61 ms
72,064 KB
testcase_20 AC 54 ms
64,128 KB
testcase_21 AC 60 ms
70,784 KB
testcase_22 AC 59 ms
70,656 KB
testcase_23 AC 59 ms
71,424 KB
testcase_24 AC 56 ms
67,712 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