結果

問題 No.88 次はどっちだ
ユーザー abcabc
提出日時 2016-11-02 13:54:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 711 bytes
コンパイル時間 1,860 ms
コンパイル使用メモリ 74,808 KB
実行使用メモリ 54,004 KB
最終ジャッジ日時 2024-11-25 01:27:26
合計ジャッジ時間 3,708 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,748 KB
testcase_01 AC 118 ms
53,772 KB
testcase_02 AC 105 ms
52,372 KB
testcase_03 AC 115 ms
53,888 KB
testcase_04 AC 112 ms
53,900 KB
testcase_05 AC 110 ms
53,680 KB
testcase_06 AC 113 ms
53,636 KB
testcase_07 AC 114 ms
52,848 KB
testcase_08 AC 117 ms
53,716 KB
testcase_09 AC 120 ms
53,676 KB
testcase_10 AC 115 ms
54,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        String firstPlayer = sc.next();
        int discsCount = 0;

        for (int i = 0; i < 8; i++) {

            String row = sc.next();

            for (int j = 0; j < 8; j++) {

                if (row.charAt(j) != '.') {
                    discsCount++;
                }

            }

        }

        if (firstPlayer.equals("oda")) {

            System.out.println(discsCount % 2 == 0 ? "oda" : "yukiko");

        } else if (firstPlayer.equals("yukiko")) {

            System.out.println(discsCount % 2 == 0 ? "yukiko" : "oda");

        }

    }

}
0