結果

問題 No.88 次はどっちだ
ユーザー htensaihtensai
提出日時 2019-12-19 13:17:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 46 ms / 5,000 ms
コード長 775 bytes
コンパイル時間 1,613 ms
コンパイル使用メモリ 75,156 KB
実行使用メモリ 50,680 KB
最終ジャッジ日時 2024-07-07 01:08:18
合計ジャッジ時間 2,606 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
50,056 KB
testcase_01 AC 45 ms
50,348 KB
testcase_02 AC 45 ms
50,380 KB
testcase_03 AC 43 ms
50,680 KB
testcase_04 AC 45 ms
50,372 KB
testcase_05 AC 44 ms
50,316 KB
testcase_06 AC 45 ms
50,212 KB
testcase_07 AC 45 ms
50,092 KB
testcase_08 AC 45 ms
50,216 KB
testcase_09 AC 45 ms
50,336 KB
testcase_10 AC 46 ms
50,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String name1 = br.readLine();
        String name2;
        if (name1.equals("oda")) {
            name2 = "yukiko";
        } else {
            name2 = "oda";
        }
        int count = 0;
        for (int i = 0; i < 8; i++) {
            char[] arr = br.readLine().toCharArray();
            for (char c : arr) {
                if (c != '.') {
                    count++;
                }
            }
        }
        if (count % 2 == 0) {
            System.out.println(name1);
        } else {
            System.out.println(name2);
        }
    }
}
0