結果

問題 No.756 チャンパーノウン定数 (1)
ユーザー Mcpu3Mcpu3
提出日時 2018-12-04 14:08:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 448 bytes
コンパイル時間 1,626 ms
コンパイル使用メモリ 74,756 KB
実行使用メモリ 53,976 KB
最終ジャッジ日時 2024-07-07 06:12:25
合計ジャッジ時間 4,755 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
53,120 KB
testcase_01 AC 105 ms
53,836 KB
testcase_02 AC 105 ms
53,460 KB
testcase_03 AC 97 ms
52,740 KB
testcase_04 AC 96 ms
52,936 KB
testcase_05 AC 106 ms
53,788 KB
testcase_06 AC 107 ms
53,860 KB
testcase_07 AC 107 ms
53,484 KB
testcase_08 AC 93 ms
52,328 KB
testcase_09 AC 93 ms
52,840 KB
testcase_10 AC 105 ms
53,888 KB
testcase_11 AC 93 ms
52,548 KB
testcase_12 AC 109 ms
53,868 KB
testcase_13 AC 106 ms
53,732 KB
testcase_14 AC 102 ms
53,484 KB
testcase_15 AC 105 ms
53,788 KB
testcase_16 AC 106 ms
53,796 KB
testcase_17 AC 100 ms
52,764 KB
testcase_18 AC 106 ms
53,568 KB
testcase_19 AC 106 ms
53,976 KB
testcase_20 AC 107 ms
53,840 KB
testcase_21 AC 107 ms
53,840 KB
testcase_22 AC 105 ms
53,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
	static char C[] = new char[101];
	static int top = 0;
	
	public static void push(int i) {
		String tmp = String.valueOf(i);
		for (int j = 0; j < tmp.length(); ++j) {
			C[top] = tmp.charAt(j);
			++top;
		}
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int D = sc.nextInt();
		sc.close();
		for (int i = 1; i <= 55; ++i) push(i);
		System.out.print(C[D - 1]);
	}
}
0