結果

問題 No.2773 Wake up Record 1
ユーザー YU HiroseYU Hirose
提出日時 2024-06-17 14:32:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 149 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 70,924 KB
最終ジャッジ日時 2024-06-17 14:32:52
合計ジャッジ時間 3,007 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,236 KB
testcase_01 AC 34 ms
52,352 KB
testcase_02 AC 33 ms
52,384 KB
testcase_03 AC 35 ms
52,004 KB
testcase_04 AC 34 ms
53,144 KB
testcase_05 AC 52 ms
70,204 KB
testcase_06 AC 46 ms
65,896 KB
testcase_07 AC 49 ms
70,644 KB
testcase_08 AC 46 ms
66,096 KB
testcase_09 AC 48 ms
66,972 KB
testcase_10 AC 52 ms
66,524 KB
testcase_11 AC 49 ms
69,828 KB
testcase_12 AC 48 ms
68,436 KB
testcase_13 AC 47 ms
64,236 KB
testcase_14 AC 52 ms
66,776 KB
testcase_15 AC 42 ms
60,408 KB
testcase_16 AC 48 ms
70,200 KB
testcase_17 AC 48 ms
68,692 KB
testcase_18 AC 47 ms
65,488 KB
testcase_19 AC 51 ms
70,924 KB
testcase_20 AC 46 ms
64,560 KB
testcase_21 AC 50 ms
70,696 KB
testcase_22 AC 48 ms
69,500 KB
testcase_23 AC 48 ms
70,400 KB
testcase_24 AC 47 ms
67,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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