結果

問題 No.88 次はどっちだ
ユーザー Pump0129Pump0129
提出日時 2018-03-28 00:58:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 154 ms / 5,000 ms
コード長 671 bytes
コンパイル時間 4,791 ms
コンパイル使用メモリ 89,128 KB
実行使用メモリ 54,428 KB
最終ジャッジ日時 2024-06-25 13:01:48
合計ジャッジ時間 5,208 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
54,344 KB
testcase_01 AC 144 ms
53,980 KB
testcase_02 AC 146 ms
54,428 KB
testcase_03 AC 146 ms
54,096 KB
testcase_04 AC 148 ms
54,020 KB
testcase_05 AC 145 ms
54,036 KB
testcase_06 AC 144 ms
54,400 KB
testcase_07 AC 148 ms
54,252 KB
testcase_08 AC 153 ms
54,204 KB
testcase_09 AC 154 ms
53,956 KB
testcase_10 AC 151 ms
54,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package net.ipipip0129.yukicoder.no88;

import java.util.Arrays;
import java.util.Scanner;

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

        boolean isStarterOda = scan.nextLine().equalsIgnoreCase("oda");

        int cnt = 0;
        for (int i = 0; i < 8; i++) {
            String line = scan.nextLine();
            cnt += Arrays.stream(line.split(""))
                    .filter(s -> s.matches("[wb]"))
                    .toArray().length;
        }

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