結果

問題 No.3004 愛国心
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-02 18:13:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 5,000 ms
コード長 308 bytes
コンパイル時間 2,105 ms
コンパイル使用メモリ 74,224 KB
実行使用メモリ 41,012 KB
最終ジャッジ日時 2024-05-05 17:41:48
合計ジャッジ時間 3,017 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
39,780 KB
testcase_01 AC 113 ms
40,996 KB
testcase_02 AC 115 ms
41,012 KB
testcase_03 AC 105 ms
39,948 KB
testcase_04 AC 112 ms
40,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String S = "yukicoder";
        int N = sc.nextInt();
        while(N!=0){
            System.out.println(S.charAt(N-1));
            N = sc.nextInt();
        }
    }
}
0