結果

問題 No.756 チャンパーノウン定数 (1)
ユーザー GrenacheGrenache
提出日時 2019-04-26 15:46:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 649 bytes
コンパイル時間 3,632 ms
コンパイル使用メモリ 74,944 KB
実行使用メモリ 41,716 KB
最終ジャッジ日時 2024-05-03 13:03:35
合計ジャッジ時間 6,459 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,152 KB
testcase_01 AC 115 ms
41,448 KB
testcase_02 AC 110 ms
41,280 KB
testcase_03 AC 113 ms
41,440 KB
testcase_04 AC 115 ms
41,148 KB
testcase_05 AC 118 ms
41,684 KB
testcase_06 AC 114 ms
41,588 KB
testcase_07 AC 105 ms
41,716 KB
testcase_08 AC 116 ms
41,028 KB
testcase_09 AC 120 ms
41,104 KB
testcase_10 AC 113 ms
41,436 KB
testcase_11 AC 101 ms
40,156 KB
testcase_12 AC 110 ms
41,120 KB
testcase_13 AC 112 ms
41,456 KB
testcase_14 AC 119 ms
41,152 KB
testcase_15 AC 112 ms
41,224 KB
testcase_16 AC 122 ms
41,248 KB
testcase_17 AC 101 ms
41,212 KB
testcase_18 AC 114 ms
41,692 KB
testcase_19 AC 104 ms
41,428 KB
testcase_20 AC 118 ms
41,696 KB
testcase_21 AC 103 ms
41,640 KB
testcase_22 AC 113 ms
41,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.Scanner;


public class Main_yukicoder756 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int d = sc.nextInt();

		StringBuilder c10 = new StringBuilder();
		for (int i = 1; c10.length() < d; i++) {
			c10.append(i);
		}

		pr.println(c10.charAt(d - 1));
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);
			
		solve();
			
		pr.close();
		sc.close();
	}

	static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0