結果

問題 No.88 次はどっちだ
ユーザー itezpaceitezpace
提出日時 2016-08-22 16:53:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 544 bytes
コンパイル時間 2,272 ms
コンパイル使用メモリ 73,944 KB
実行使用メモリ 41,324 KB
最終ジャッジ日時 2024-11-07 22:35:48
合計ジャッジ時間 4,308 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,092 KB
testcase_01 AC 125 ms
41,324 KB
testcase_02 AC 127 ms
41,052 KB
testcase_03 AC 113 ms
40,080 KB
testcase_04 AC 126 ms
40,996 KB
testcase_05 AC 112 ms
40,300 KB
testcase_06 AC 128 ms
41,300 KB
testcase_07 AC 125 ms
40,992 KB
testcase_08 AC 129 ms
41,048 KB
testcase_09 AC 125 ms
40,964 KB
testcase_10 AC 125 ms
41,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Yuki88 {
  public static void main(String[] args){
    Scanner sc = new Scanner(System.in);
    String s = sc.next();
    int x = 0;
    for(int i=0; i<8; ++i){
      String b = sc.next();
      for(int j=0; j<8; ++j){
        char a = b.charAt(j);
        if(a=='w' || a=='b'){
          x+=1;
        }
      }
    }
    if(x%2==0){
      System.out.println(s);
    } else {
      if(s.equals("oda")){
        System.out.println("yukiko");
      } else {
        System.out.println("oda");
      }
    }
  }
}
0