結果

問題 No.756 チャンパーノウン定数 (1)
ユーザー masamasa
提出日時 2019-01-10 17:09:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 2,413 ms
コンパイル使用メモリ 76,512 KB
実行使用メモリ 57,080 KB
最終ジャッジ日時 2024-05-03 04:58:38
合計ジャッジ時間 5,982 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
55,108 KB
testcase_01 AC 150 ms
55,168 KB
testcase_02 AC 147 ms
55,160 KB
testcase_03 AC 132 ms
54,704 KB
testcase_04 AC 148 ms
54,864 KB
testcase_05 AC 143 ms
57,080 KB
testcase_06 AC 150 ms
54,988 KB
testcase_07 AC 147 ms
54,988 KB
testcase_08 AC 136 ms
54,664 KB
testcase_09 AC 124 ms
54,588 KB
testcase_10 AC 129 ms
54,648 KB
testcase_11 AC 128 ms
54,548 KB
testcase_12 AC 132 ms
54,704 KB
testcase_13 AC 134 ms
54,640 KB
testcase_14 AC 148 ms
54,872 KB
testcase_15 AC 146 ms
55,088 KB
testcase_16 AC 139 ms
55,004 KB
testcase_17 AC 127 ms
54,624 KB
testcase_18 AC 144 ms
55,148 KB
testcase_19 AC 126 ms
54,676 KB
testcase_20 AC 131 ms
54,444 KB
testcase_21 AC 158 ms
55,160 KB
testcase_22 AC 129 ms
54,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        int digit = sc.nextInt();
        String linkingSentence = "";
        
        for (int i = 0; i <= digit; i++) {
            linkingSentence += i;
        }
        System.out.println(linkingSentence.substring(digit, digit+1));
    }
}
0