結果

問題 No.88 次はどっちだ
ユーザー kou6839kou6839
提出日時 2014-12-08 19:40:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 593 bytes
コンパイル時間 1,964 ms
コンパイル使用メモリ 75,256 KB
実行使用メモリ 53,880 KB
最終ジャッジ日時 2024-06-11 18:27:49
合計ジャッジ時間 3,775 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
41,484 KB
testcase_01 AC 111 ms
41,044 KB
testcase_02 AC 100 ms
41,440 KB
testcase_03 AC 101 ms
41,308 KB
testcase_04 AC 98 ms
41,448 KB
testcase_05 AC 117 ms
41,216 KB
testcase_06 WA -
testcase_07 AC 111 ms
41,200 KB
testcase_08 AC 112 ms
41,140 KB
testcase_09 AC 100 ms
41,380 KB
testcase_10 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;


public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String sen = sc.next();
		char[][] ban = new char[8][8];
		for(int i=0;i<8;i++){
			String temp=sc.next();
			ban[i]=temp.toCharArray();
		}
		int count=0;
		for(int i=0;i<8;i++){
			for(int j=0;j<8;j++){
				if(ban[i][j]!='.') count++;
			}
		}
		if(count%2==0){
			System.out.println(sen);
		}else{
			if(sen.equals("oda")){
				System.out.println("yukiko");
			}else{
				System.out.println("odas");
			}
		}
	}
}	
0