結果
| 問題 | No.2773 Wake up Record 1 |
| コンテスト | |
| ユーザー |
liny_tail
|
| 提出日時 | 2024-08-15 11:20:35 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 171 bytes |
| 記録 | |
| コンパイル時間 | 300 ms |
| コンパイル使用メモリ | 21,540 KB |
| 実行使用メモリ | 17,020 KB |
| 最終ジャッジ日時 | 2026-08-25 01:34:04 |
| 合計ジャッジ時間 | 4,946 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 22 |
ソースコード
N = int(input())
S = input()
lst = []
pos = -1
while True:
pos = S.find('xo', pos+1)
if pos == -1:
break
lst.append(pos+2)
print(' '.join([str(i) for i in lst]))
liny_tail