結果

問題 No.494 yukicoder
ユーザー YOSHIYOSHI
提出日時 2021-03-17 21:14:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 387 bytes
コンパイル時間 2,862 ms
コンパイル使用メモリ 74,720 KB
実行使用メモリ 50,276 KB
最終ジャッジ日時 2024-04-27 13:46:13
合計ジャッジ時間 3,799 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,236 KB
testcase_01 AC 50 ms
49,996 KB
testcase_02 AC 49 ms
50,244 KB
testcase_03 AC 46 ms
50,220 KB
testcase_04 AC 46 ms
49,924 KB
testcase_05 AC 47 ms
50,276 KB
testcase_06 AC 47 ms
50,232 KB
testcase_07 AC 47 ms
50,228 KB
testcase_08 AC 47 ms
50,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No00000494_Main {
	static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
	public static void main(String[] args) throws IOException {
		String[] y = {"y", "u", "k", "i", "c", "o", "d", "e", "r"};
		System.out.println(y[br.readLine().indexOf("?")]);
	}
}
0