結果
問題 |
No.2773 Wake up Record 1
|
ユーザー |
![]() |
提出日時 | 2024-06-25 14:02:54 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 140 bytes |
コンパイル時間 | 798 ms |
コンパイル使用メモリ | 82,284 KB |
実行使用メモリ | 71,336 KB |
最終ジャッジ日時 | 2024-06-25 14:02:58 |
合計ジャッジ時間 | 3,133 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 2 RE * 1 |
other | WA * 10 RE * 12 |
ソースコード
N = int(input()) S = input().strip() res = [] for i in range(1, N): if S[i] == "x" and S[i + 1] == "o": res.append(i + 1) print(*res)