結果

問題 No.88 次はどっちだ
ユーザー tentententen
提出日時 2020-11-04 15:26:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 5,000 ms
コード長 630 bytes
コンパイル時間 2,101 ms
コンパイル使用メモリ 75,884 KB
実行使用メモリ 54,404 KB
最終ジャッジ日時 2024-07-22 09:57:47
合計ジャッジ時間 4,416 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
52,996 KB
testcase_01 AC 113 ms
54,020 KB
testcase_02 AC 98 ms
52,536 KB
testcase_03 AC 114 ms
54,100 KB
testcase_04 AC 113 ms
54,404 KB
testcase_05 AC 114 ms
54,160 KB
testcase_06 AC 114 ms
53,864 KB
testcase_07 AC 115 ms
53,964 KB
testcase_08 AC 101 ms
52,552 KB
testcase_09 AC 111 ms
53,988 KB
testcase_10 AC 114 ms
53,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		String sente = sc.next();
		int count = 0;
		for (int i = 0; i < 8; i++) {
		    for (char c : sc.next().toCharArray()) {
		        if (c == '.') {
		            count++;
		        }
		    }
		}
		if (count % 2 == 0) {
		    if (sente.equals("oda")) {
		        System.out.println("oda");
		    } else {
		        System.out.println("yukiko");
		    }
		} else {
		    if (sente.equals("oda")) {
		        System.out.println("yukiko");
		    } else {
		        System.out.println("oda");
		    }
		}
	}
}
0