結果

問題 No.756 チャンパーノウン定数 (1)
ユーザー masamasa
提出日時 2019-01-10 17:09:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 2,152 ms
コンパイル使用メモリ 76,472 KB
実行使用メモリ 42,660 KB
最終ジャッジ日時 2024-11-24 02:09:49
合計ジャッジ時間 6,674 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
42,156 KB
testcase_01 AC 138 ms
42,140 KB
testcase_02 AC 150 ms
42,652 KB
testcase_03 AC 151 ms
42,552 KB
testcase_04 AC 154 ms
42,660 KB
testcase_05 AC 150 ms
42,372 KB
testcase_06 AC 152 ms
42,496 KB
testcase_07 AC 146 ms
42,128 KB
testcase_08 AC 148 ms
42,316 KB
testcase_09 AC 150 ms
42,348 KB
testcase_10 AC 155 ms
42,468 KB
testcase_11 AC 155 ms
42,504 KB
testcase_12 AC 151 ms
42,456 KB
testcase_13 AC 137 ms
42,056 KB
testcase_14 AC 132 ms
41,740 KB
testcase_15 AC 148 ms
42,348 KB
testcase_16 AC 143 ms
42,188 KB
testcase_17 AC 158 ms
42,296 KB
testcase_18 AC 148 ms
42,216 KB
testcase_19 AC 149 ms
42,380 KB
testcase_20 AC 144 ms
41,928 KB
testcase_21 AC 149 ms
42,380 KB
testcase_22 AC 136 ms
42,092 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