結果

問題 No.1016 三目並べ
ユーザー ks2mks2m
提出日時 2020-04-03 21:50:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 1,058 bytes
コンパイル時間 1,833 ms
コンパイル使用メモリ 77,876 KB
実行使用メモリ 38,968 KB
最終ジャッジ日時 2024-07-03 02:10:17
合計ジャッジ時間 3,169 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
37,032 KB
testcase_01 AC 51 ms
36,852 KB
testcase_02 AC 51 ms
37,072 KB
testcase_03 AC 53 ms
36,732 KB
testcase_04 AC 54 ms
36,764 KB
testcase_05 AC 51 ms
36,764 KB
testcase_06 AC 54 ms
36,908 KB
testcase_07 AC 104 ms
38,608 KB
testcase_08 AC 100 ms
38,608 KB
testcase_09 AC 112 ms
38,968 KB
testcase_10 AC 112 ms
38,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int t = Integer.parseInt(br.readLine());
		PrintWriter pw = new PrintWriter(System.out);
		label:
		for (int i = 0; i < t; i++) {
			String[] sa = br.readLine().split(" ");
			String s = sa[1];
			if (s.indexOf("ooo") != -1
					|| s.indexOf("oo-") != -1
					|| s.indexOf("-oo") != -1
					|| s.indexOf("--o-") != -1
					|| s.indexOf("-o--") != -1
					|| s.indexOf("o-o") != -1
					) {
				pw.println("O");
			} else {
				int cnt = 0;
				for (int j = 0; j < s.length(); j++) {
					if (s.charAt(j) == 'o') {
						if (cnt > 0 && cnt % 2 == 0) {
							pw.println("O");
							continue label;
						}
						cnt = 1;
					} else if (s.charAt(j) == 'x') {
						cnt = 0;
					} else {
						if (cnt > 0) {
							cnt++;
						}
					}
				}
				pw.println("X");
			}
		}
		br.close();
		pw.flush();
	}
}
0