結果

問題 No.88 次はどっちだ
ユーザー YamaKasaYamaKasa
提出日時 2018-05-11 23:40:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 602 bytes
コンパイル時間 3,465 ms
コンパイル使用メモリ 74,620 KB
実行使用メモリ 54,256 KB
最終ジャッジ日時 2024-06-28 09:04:08
合計ジャッジ時間 5,755 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,560 KB
testcase_01 AC 131 ms
53,924 KB
testcase_02 AC 133 ms
53,860 KB
testcase_03 AC 131 ms
54,036 KB
testcase_04 AC 130 ms
53,964 KB
testcase_05 AC 130 ms
53,704 KB
testcase_06 AC 133 ms
53,828 KB
testcase_07 AC 128 ms
54,116 KB
testcase_08 AC 130 ms
53,852 KB
testcase_09 AC 131 ms
53,800 KB
testcase_10 AC 132 ms
54,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Exec0088 {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String S = scan.next();
		String []B = new String[8];
		for(int i = 0; i < 8; i++) {
			B[i] = scan.next();
		}
		scan.close();
		int cnt = 0;
		for(int i = 0; i < 8; i++) {
			for(int j = 0; j < 8; j++) {
				char c = B[i].charAt(j);
				if(c == 'w' || c == 'b') {
					cnt ++;
				}
			}
		}

		if(cnt % 2 == 0) {
			System.out.println(S);
		}else {
			if(S.equals("oda")) {
				System.out.println("yukiko");
			}else {
				System.out.println("oda");
			}
		}
	}
}
0