結果
| 問題 |
No.2773 Wake up Record 1
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-06-07 21:30:09 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 125 bytes |
| コンパイル時間 | 197 ms |
| コンパイル使用メモリ | 82,432 KB |
| 実行使用メモリ | 70,272 KB |
| 最終ジャッジ日時 | 2024-12-26 07:05:13 |
| 合計ジャッジ時間 | 2,985 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 22 |
ソースコード
n = int(input()) s = input() a = [] for i in range(1, n): if s[i-1] == "x" and s[i] == "o": a.append(i + 1) print(*a)