結果

問題 No.3004 愛国心
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-19 00:39:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 1,307 bytes
コンパイル時間 2,601 ms
コンパイル使用メモリ 79,280 KB
実行使用メモリ 41,136 KB
最終ジャッジ日時 2024-07-04 16:34:53
合計ジャッジ時間 3,759 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
40,988 KB
testcase_01 AC 120 ms
41,136 KB
testcase_02 AC 109 ms
40,260 KB
testcase_03 AC 107 ms
40,012 KB
testcase_04 AC 111 ms
39,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.regex.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        ArrayList<Integer> num= new ArrayList<>();
        int a=0;
        int total=1;
        while(total==1){
            num.add(koko.nextInt());
            if(num.get(a)==1){
                System.out.println('y');
                a++;
            }else if(num.get(a)==2){
                System.out.println('u');
                a++;
            }else if(num.get(a)==3){
                System.out.println('k');
                a++;
            }else if(num.get(a)==4){
                System.out.println('i');
                a++;
            }else if(num.get(a)==5){
                System.out.println('c');
                a++;
            }else if(num.get(a)==6){
                System.out.println('o');
                a++;
            }else if(num.get(a)==7){
                System.out.println('d');
                a++;
            }else if(num.get(a)==8){
                System.out.println('e');
                a++;
            }else if(num.get(a)==9){
                System.out.println('r');
                a++;
            }else if(num.get(a)==0){
                total=0;
            }
        }
    }
}

0