結果

問題 No.88 次はどっちだ
ユーザー yagi2yagi2
提出日時 2017-04-25 13:01:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 714 bytes
コンパイル時間 2,158 ms
コンパイル使用メモリ 75,252 KB
実行使用メモリ 54,064 KB
最終ジャッジ日時 2024-09-13 08:42:13
合計ジャッジ時間 4,151 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,008 KB
testcase_01 AC 126 ms
54,036 KB
testcase_02 AC 127 ms
54,056 KB
testcase_03 AC 127 ms
53,980 KB
testcase_04 AC 124 ms
53,828 KB
testcase_05 AC 128 ms
53,996 KB
testcase_06 AC 128 ms
54,064 KB
testcase_07 AC 128 ms
54,024 KB
testcase_08 AC 127 ms
54,056 KB
testcase_09 AC 124 ms
53,980 KB
testcase_10 AC 133 ms
53,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        String first = sc.next();
        
        List<String> ban = new ArrayList<>();
        for (int i = 0; i < 8; i++) {
            ban.add(sc.next());
        }

        int k = 0;
        for (int i = 0; i < 8; i++) {
            for (String s : ban.get(i).split("")) {
                if ("w".equals(s) || "b".equals(s)) k++;
            }
        }

        if (k % 2 == 0 ^ "oda".equals(first)) {
            System.out.println("yukiko");
        } else {
            System.out.println("oda");
        }
    }
}
0