結果

問題 No.88 次はどっちだ
ユーザー rf141rf141
提出日時 2015-08-09 20:08:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 678 bytes
コンパイル時間 3,338 ms
コンパイル使用メモリ 75,108 KB
実行使用メモリ 41,572 KB
最終ジャッジ日時 2024-07-18 06:16:10
合計ジャッジ時間 4,924 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
41,572 KB
testcase_01 AC 113 ms
41,096 KB
testcase_02 AC 118 ms
41,076 KB
testcase_03 AC 117 ms
41,188 KB
testcase_04 AC 118 ms
41,228 KB
testcase_05 AC 109 ms
41,216 KB
testcase_06 AC 98 ms
39,988 KB
testcase_07 AC 111 ms
41,140 KB
testcase_08 AC 100 ms
39,984 KB
testcase_09 AC 96 ms
40,104 KB
testcase_10 AC 113 ms
41,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class WhoIsNext{
	public static void main(String... args){
		Scanner scan = new Scanner(System.in);
		String f = scan.next();
		StringBuilder sb = new StringBuilder();
		for(int i = 0; i < 8; i++){
			sb.append(scan.next());
		}
		String base = sb.toString();
		System.out.println(checkWhoIsNext(f,base));
	}
	public static String checkWhoIsNext(String f,String base){
		int count = 0;
		String next="";
		if(f.equals("oda")){
			next="yukiko";
		}else{
			next="oda";
		}
		for(int i = 0; i < base.length(); i++){
			if(base.substring(i,i+1).equals("w") || base.substring(i,i+1).equals("b")){
				count++;
			}
		}
		return (count%2==0)? f:next;
	}
}
0