結果

問題 No.756 チャンパーノウン定数 (1)
ユーザー daijidalidaijidali
提出日時 2018-12-05 20:28:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 604 bytes
コンパイル時間 3,461 ms
コンパイル使用メモリ 74,368 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-07-20 05:09:05
合計ジャッジ時間 7,744 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,076 KB
testcase_01 AC 136 ms
54,036 KB
testcase_02 AC 136 ms
54,104 KB
testcase_03 AC 141 ms
53,908 KB
testcase_04 AC 146 ms
53,888 KB
testcase_05 AC 140 ms
53,952 KB
testcase_06 AC 143 ms
53,788 KB
testcase_07 AC 139 ms
54,200 KB
testcase_08 AC 146 ms
54,044 KB
testcase_09 AC 143 ms
54,028 KB
testcase_10 AC 141 ms
54,292 KB
testcase_11 AC 137 ms
54,060 KB
testcase_12 AC 146 ms
54,020 KB
testcase_13 AC 149 ms
53,816 KB
testcase_14 AC 141 ms
53,772 KB
testcase_15 AC 141 ms
53,832 KB
testcase_16 AC 146 ms
54,188 KB
testcase_17 AC 143 ms
54,164 KB
testcase_18 AC 144 ms
54,152 KB
testcase_19 AC 141 ms
54,224 KB
testcase_20 AC 142 ms
54,016 KB
testcase_21 AC 142 ms
53,904 KB
testcase_22 AC 143 ms
54,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package _test;

import java.util.Scanner;

public class No756 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int D = sc.nextInt();
		int length = 0;
		int ans = 0;
		for (int i = 1; i <= 100; i++) {
//			System.out.print(i);
			if (i < 10)
				length += 1;
			else if (i < 100)
				length += 2;
			else
				length += 3;

			if (length >= D) {
				if (length == D) {
					ans = i % 10;
				} else {
					if (i < 100) {
						ans = i / 10;
					} else {
						ans = i / 100;
					}
				}
				break;
			}
		}
//		System.out.println("");
		System.out.println(ans);
	}
}
0