結果

問題 No.2773 Wake up Record 1
ユーザー ks2mks2m
提出日時 2024-06-07 21:39:36
言語 Java
(openjdk 23)
結果
AC  
実行時間 267 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 4,723 ms
コンパイル使用メモリ 74,408 KB
実行使用メモリ 42,964 KB
最終ジャッジ日時 2024-12-26 07:25:22
合計ジャッジ時間 12,112 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		char[] s = sc.next().toCharArray();
		sc.close();

		int cnt = 0;
		StringBuilder sb = new StringBuilder();
		for (int i = 1; i < n; i++) {
			if (s[i - 1] == 'x' && s[i] == 'o') {
				cnt++;
				sb.append(i + 1).append(' ');
			}
		}
		System.out.println(cnt);
		if (cnt > 0) {
			sb.deleteCharAt(sb.length() - 1);
		}
		System.out.println(sb.toString());
	}
}
0