結果

問題 No.88 次はどっちだ
ユーザー r.suzukir.suzuki
提出日時 2016-01-13 12:34:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 682 bytes
コンパイル時間 3,527 ms
コンパイル使用メモリ 79,540 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-09-19 18:55:52
合計ジャッジ時間 5,140 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,432 KB
testcase_01 AC 112 ms
54,340 KB
testcase_02 AC 118 ms
54,156 KB
testcase_03 AC 119 ms
53,880 KB
testcase_04 AC 106 ms
52,856 KB
testcase_05 AC 118 ms
54,144 KB
testcase_06 AC 109 ms
53,484 KB
testcase_07 AC 113 ms
54,044 KB
testcase_08 AC 115 ms
54,196 KB
testcase_09 AC 103 ms
53,052 KB
testcase_10 AC 102 ms
53,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

interface Delete{
	static void delete(String str){
		
	}
}

class Period implements Delete{
	public static String delete(String str){
		return str.replaceAll("\\.","");
	}
}

public class No_88{
	public static void main(String[] args){
		java.util.Scanner sc = new java.util.Scanner(System.in);
		String first,second,str;
		first = sc.next();
		second = "";
		str = "";
		
		if(first.equals("oda")){
			second = "yukiko";
		}
		else if(first.equals("yukiko")){
			second = "oda";
		}
		
		for(int i = 0;i < 8;i++){
			str += sc.next();
		}
		
		str = Period.delete(str);
		
		if(str.length()%2 == 0){
			System.out.println(first);
		}
		else{
			System.out.println(second);
		}
	}
}
0