結果

問題 No.494 yukicoder
ユーザー マサマサ
提出日時 2022-02-09 15:41:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 665 bytes
コンパイル時間 2,381 ms
コンパイル使用メモリ 74,444 KB
実行使用メモリ 41,468 KB
最終ジャッジ日時 2024-06-24 19:25:50
合計ジャッジ時間 3,752 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
40,404 KB
testcase_01 AC 122 ms
41,264 KB
testcase_02 AC 119 ms
41,164 KB
testcase_03 AC 123 ms
41,208 KB
testcase_04 AC 124 ms
41,468 KB
testcase_05 AC 124 ms
41,196 KB
testcase_06 AC 120 ms
41,216 KB
testcase_07 AC 122 ms
41,064 KB
testcase_08 AC 120 ms
41,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String str = sc.next();
		
		int index = str.indexOf("?");
		
		switch (index) {
		case 0:
			System.out.println("y");
			break;
		case 1:
			System.out.println("u");
			break;
		case 2:
			System.out.println("k");
			break;
		case 3:
			System.out.println("i");
			break;
		case 4:
			System.out.println("c");
			break;
		case 5:
			System.out.println("o");
			break;
		case 6:
			System.out.println("d");
			break;
		case 7:
			System.out.println("e");
			break;
		case 8:
			System.out.println("r");
			break;
		}
		sc.close();
	}
}
0