結果

問題 No.88 次はどっちだ
ユーザー papipenpapipen
提出日時 2017-04-11 21:04:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 439 bytes
コンパイル時間 2,191 ms
コンパイル使用メモリ 74,156 KB
実行使用メモリ 54,236 KB
最終ジャッジ日時 2024-07-18 09:06:54
合計ジャッジ時間 4,594 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,948 KB
testcase_01 AC 129 ms
54,160 KB
testcase_02 AC 128 ms
53,852 KB
testcase_03 AC 131 ms
54,012 KB
testcase_04 AC 129 ms
53,964 KB
testcase_05 AC 135 ms
53,968 KB
testcase_06 AC 128 ms
54,100 KB
testcase_07 AC 125 ms
53,928 KB
testcase_08 AC 131 ms
54,044 KB
testcase_09 AC 130 ms
53,884 KB
testcase_10 AC 128 ms
54,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class N088{
	public static void main(String args[]){
		Scanner s = new Scanner(System.in);
		String a = s.next();
		String b = a.equals("oda") ? "yukiko" : "oda";
		int count = 0;
		for(int i = 0; i < 8; i++){
			String c = s.next();
			for(int j = 0; j < 8; j++){
				if(c.charAt(j) != '.'){
					count++;
				}
			}
		}
		if(count % 2 == 0){
			System.out.println(a);
		}else{
			System.out.println(b);
		}
	}
}
0