結果

問題 No.88 次はどっちだ
ユーザー kano_townkano_town
提出日時 2014-12-07 19:04:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 111 ms / 5,000 ms
コード長 591 bytes
コンパイル時間 3,369 ms
コンパイル使用メモリ 74,336 KB
実行使用メモリ 41,372 KB
最終ジャッジ日時 2024-06-11 16:05:25
合計ジャッジ時間 4,716 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,372 KB
testcase_01 AC 99 ms
41,340 KB
testcase_02 AC 110 ms
40,976 KB
testcase_03 AC 111 ms
40,148 KB
testcase_04 AC 105 ms
41,372 KB
testcase_05 AC 107 ms
41,180 KB
testcase_06 AC 110 ms
41,080 KB
testcase_07 AC 108 ms
41,040 KB
testcase_08 AC 108 ms
41,080 KB
testcase_09 AC 106 ms
41,196 KB
testcase_10 AC 99 ms
41,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder88 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String name = sc.next();
		String b;
		int count = 0;
		for (int i = 0; i < 8; i++) {
			b = sc.next();
			for (int j = 0; j < 8; j++) {
				if (b.charAt(j) != '.') count++;
			}
		}
		if (name.equals("oda")) {
			if (count % 2 == 0)
				System.out.println("oda");
			else
				System.out.println("yukiko");
		} else {
			if (count % 2 == 0)
				System.out.println("yukiko");
			else
				System.out.println("oda");
		}

	}
}
0