結果
問題 |
No.2773 Wake up Record 1
|
ユーザー |
|
提出日時 | 2024-06-07 21:23:15 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 156 bytes |
コンパイル時間 | 197 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 70,144 KB |
最終ジャッジ日時 | 2024-12-26 06:50:54 |
合計ジャッジ時間 | 2,437 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 22 |
ソースコード
N=int(input()) S=input() if N==1: print(0) exit(0) ans=[] for i in range(1,N): if S[i-1]=="x" and S[i]=="o": ans.append(i+1) print(*ans)