結果

問題 No.88 次はどっちだ
ユーザー shinshin
提出日時 2022-05-17 15:22:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 869 bytes
コンパイル時間 3,473 ms
コンパイル使用メモリ 77,000 KB
実行使用メモリ 37,272 KB
最終ジャッジ日時 2024-09-15 09:59:18
合計ジャッジ時間 4,752 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
36,944 KB
testcase_01 AC 56 ms
37,164 KB
testcase_02 AC 55 ms
37,192 KB
testcase_03 AC 54 ms
37,200 KB
testcase_04 AC 55 ms
37,272 KB
testcase_05 AC 55 ms
37,072 KB
testcase_06 AC 56 ms
36,940 KB
testcase_07 AC 55 ms
37,220 KB
testcase_08 AC 55 ms
36,904 KB
testcase_09 AC 55 ms
37,068 KB
testcase_10 AC 55 ms
37,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;

public class No88 {

	public static void main(String[] args) throws IOException{
		//次はどっちだ
		String[] text = readStr();
		
		int count = 0;
		for(int i = 0;i < 8;i++) {
			text[i+1] = text[i+1].replaceAll("[a-z]", "");
			count += 8 - text[i+1].length();
		}
		
		if(count % 2 == 0) {
			System.out.println(text[0]);
		}else {
			System.out.println("odayukiko".replaceAll(text[0], ""));
		}

	}
	
	public static String[] readStr() throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		ArrayList<String> list = new ArrayList<>();

		do {
			list.add(br.readLine());
		}while(br.ready());

		br.close();

		String[] text = new String[list.size()];
		list.toArray(text);

		return text;

	}

}
0