結果

問題 No.88 次はどっちだ
ユーザー GrenacheGrenache
提出日時 2015-09-23 01:16:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 568 bytes
コンパイル時間 3,386 ms
コンパイル使用メモリ 78,232 KB
実行使用メモリ 41,328 KB
最終ジャッジ日時 2024-07-19 08:46:02
合計ジャッジ時間 5,374 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
39,872 KB
testcase_01 AC 125 ms
41,060 KB
testcase_02 AC 123 ms
41,268 KB
testcase_03 AC 123 ms
41,088 KB
testcase_04 AC 125 ms
41,052 KB
testcase_05 AC 110 ms
40,336 KB
testcase_06 AC 111 ms
39,900 KB
testcase_07 AC 125 ms
41,328 KB
testcase_08 AC 112 ms
40,256 KB
testcase_09 AC 115 ms
40,308 KB
testcase_10 AC 126 ms
41,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder88 {

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

        String s = sc.next();
        String[] oy = new String[2];
        oy[0] = s;
        oy[1] = s.equals("oda") ? "yukiko" : "oda";
        
        int cnt = 0;
        for (int i = 0; i < 8; i++) {
        	for (char e : sc.next().toCharArray()) {
        		if (e == 'b' || e == 'w') {
        			cnt++;
        		}
        	}
        }

        System.out.println(oy[cnt % 2]);

        sc.close();
    }
}
0