結果

問題 No.88 次はどっちだ
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-02-25 22:50:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 565 bytes
コンパイル時間 2,139 ms
コンパイル使用メモリ 74,548 KB
実行使用メモリ 54,488 KB
最終ジャッジ日時 2024-09-22 13:47:19
合計ジャッジ時間 4,161 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,116 KB
testcase_01 AC 126 ms
54,368 KB
testcase_02 AC 127 ms
53,916 KB
testcase_03 AC 127 ms
54,348 KB
testcase_04 AC 128 ms
53,964 KB
testcase_05 AC 125 ms
54,276 KB
testcase_06 AC 127 ms
53,916 KB
testcase_07 AC 128 ms
54,488 KB
testcase_08 AC 128 ms
54,284 KB
testcase_09 AC 129 ms
53,916 KB
testcase_10 AC 129 ms
54,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    public static void main(String[] args) throws Exception {
        Scanner in = new Scanner(System.in);
        String s = in.next();
        String[] name = {"oda", "yukiko"};
        int stones = 0;
        for(int i=0; i<8; i++) {
            String l = in.next();
            for(int j=0; j<8; j++) {
                if(l.charAt(j) != '.') {
                    stones++;
                }
            }
        }
        int turn = s.equals(name[0]) ? 0 : 1;
        System.out.println(name[(turn+stones)%2]);
    }
}
0