結果

問題 No.756 チャンパーノウン定数 (1)
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2019-02-19 21:01:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 482 bytes
コンパイル時間 2,071 ms
コンパイル使用メモリ 74,260 KB
実行使用メモリ 54,244 KB
最終ジャッジ日時 2024-10-12 19:44:43
合計ジャッジ時間 5,890 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,852 KB
testcase_01 AC 124 ms
53,684 KB
testcase_02 AC 125 ms
54,244 KB
testcase_03 AC 122 ms
53,784 KB
testcase_04 AC 122 ms
53,912 KB
testcase_05 AC 125 ms
53,540 KB
testcase_06 AC 124 ms
53,940 KB
testcase_07 AC 121 ms
53,960 KB
testcase_08 AC 124 ms
53,716 KB
testcase_09 AC 110 ms
53,008 KB
testcase_10 AC 126 ms
53,696 KB
testcase_11 AC 125 ms
54,056 KB
testcase_12 AC 124 ms
53,788 KB
testcase_13 AC 115 ms
52,804 KB
testcase_14 AC 123 ms
54,012 KB
testcase_15 AC 123 ms
53,712 KB
testcase_16 AC 117 ms
53,132 KB
testcase_17 AC 128 ms
53,924 KB
testcase_18 AC 123 ms
54,012 KB
testcase_19 AC 126 ms
53,516 KB
testcase_20 AC 126 ms
54,224 KB
testcase_21 AC 123 ms
53,820 KB
testcase_22 AC 125 ms
53,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        int d = sc.nextInt();
        final int MAX = 100;
        StringBuilder sb = new StringBuilder();
        int num = 1;
        while(true) {
            sb.append(num);
            if(sb.length() > MAX) break; 
            num++;
        }
        String s = sb.toString();
        System.out.println(s.charAt(d-1));
    }
}
0