結果

問題 No.3004 愛国心
ユーザー Mcpu3Mcpu3
提出日時 2018-06-22 19:53:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 581 bytes
コンパイル時間 2,097 ms
コンパイル使用メモリ 74,196 KB
実行使用メモリ 54,164 KB
最終ジャッジ日時 2024-06-30 18:04:23
合計ジャッジ時間 3,482 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,132 KB
testcase_01 AC 135 ms
53,732 KB
testcase_02 AC 135 ms
54,164 KB
testcase_03 AC 137 ms
53,848 KB
testcase_04 AC 134 ms
54,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no3004{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int n;
		while(true) {
			n=stdIn.nextInt();
			if(n==0) break;
			if(n==1) System.out.println("y");
			else if(n==2) System.out.println("u");
			else if(n==3) System.out.println("k");
			else if(n==4) System.out.println("i");
			else if(n==5) System.out.println("c");
			else if(n==6) System.out.println("o");
			else if(n==7) System.out.println("d");
			else if(n==8) System.out.println("e");
			else System.out.println("r");
		}
	}
}
0