結果

問題 No.756 チャンパーノウン定数 (1)
ユーザー daijidalidaijidali
提出日時 2018-12-05 20:23:55
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 550 bytes
コンパイル時間 3,869 ms
コンパイル使用メモリ 75,540 KB
実行使用メモリ 52,624 KB
最終ジャッジ日時 2024-07-20 05:08:55
合計ジャッジ時間 8,180 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
52,080 KB
testcase_01 AC 162 ms
52,108 KB
testcase_02 WA -
testcase_03 AC 141 ms
52,124 KB
testcase_04 WA -
testcase_05 AC 137 ms
52,064 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 139 ms
52,132 KB
testcase_09 AC 140 ms
52,072 KB
testcase_10 WA -
testcase_11 AC 136 ms
52,112 KB
testcase_12 WA -
testcase_13 AC 137 ms
52,624 KB
testcase_14 AC 142 ms
52,508 KB
testcase_15 AC 142 ms
52,016 KB
testcase_16 AC 147 ms
41,396 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 144 ms
41,144 KB
testcase_20 AC 147 ms
41,652 KB
testcase_21 AC 134 ms
40,960 KB
testcase_22 AC 137 ms
41,132 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++) {
			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(ans);
	}
}
0