結果

問題 No.88 次はどっちだ
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-12 02:13:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 722 bytes
コンパイル時間 2,796 ms
コンパイル使用メモリ 74,348 KB
実行使用メモリ 54,240 KB
最終ジャッジ日時 2024-11-25 18:56:03
合計ジャッジ時間 4,363 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,240 KB
testcase_01 AC 132 ms
54,124 KB
testcase_02 AC 131 ms
54,056 KB
testcase_03 AC 133 ms
54,100 KB
testcase_04 AC 132 ms
53,764 KB
testcase_05 AC 135 ms
53,996 KB
testcase_06 AC 132 ms
54,080 KB
testcase_07 AC 131 ms
54,232 KB
testcase_08 AC 130 ms
53,584 KB
testcase_09 AC 130 ms
53,940 KB
testcase_10 AC 129 ms
53,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String s = sc.next();
        int count = 0;
        for(int i=0; i<8; i++){
            String t = sc.next();
            String [] arr = t.split("");
            for(int j=0; j<arr.length; j++){
                if( "w".equals(arr[j]) || "b".equals(arr[j]) ){
                    count++;
                }
            }
        }
        if(count%2==0){
            System.out.println(s);
        }else{
            if( "yukiko".equals(s) ){
                System.out.println("oda");
            }else{
                System.out.println("yukiko");
            }
        }
    }
}
0