結果

問題 No.207 世界のなんとか
ユーザー YamaKasaYamaKasa
提出日時 2018-04-19 15:55:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 763 bytes
コンパイル時間 1,966 ms
コンパイル使用メモリ 74,268 KB
実行使用メモリ 54,316 KB
最終ジャッジ日時 2024-06-27 04:48:36
合計ジャッジ時間 5,319 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,216 KB
testcase_01 AC 128 ms
54,096 KB
testcase_02 AC 136 ms
54,316 KB
testcase_03 AC 132 ms
53,952 KB
testcase_04 AC 135 ms
54,092 KB
testcase_05 AC 137 ms
54,180 KB
testcase_06 AC 130 ms
54,068 KB
testcase_07 AC 127 ms
53,908 KB
testcase_08 AC 129 ms
54,316 KB
testcase_09 AC 136 ms
53,992 KB
testcase_10 AC 135 ms
53,876 KB
testcase_11 AC 141 ms
53,988 KB
testcase_12 AC 142 ms
54,156 KB
testcase_13 AC 135 ms
53,948 KB
testcase_14 AC 130 ms
54,068 KB
testcase_15 AC 137 ms
53,820 KB
testcase_16 AC 135 ms
53,876 KB
testcase_17 AC 128 ms
54,064 KB
testcase_18 AC 132 ms
54,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	public static void main(String[] args) {
		//System.out.println("最小値");
		Scanner scanner = new Scanner(System.in);
		int A = scanner.nextInt();
		//System.out.println("最大値");
		int B = scanner.nextInt();
		scanner.close();
		int n = B-A + 1;	//調べる数字の数n
		int k = A; //調べる数字
		for(int i=0; i < n; i++) {
			int digits_k = (int)(Math.log10(k))+1;
			if(k % 3 == 0) {
				System.out.println(k);
				k ++;
			}else {
				int k_d1 = k;
				int k_d2 = k/10;
				for(int j=0; j < digits_k; j++) {
					int k_d_j = k_d1 - k_d2*10;
					if(k_d_j == 3) {
						System.out.println(k);
						break;
					}else {
						k_d1 = k_d1/10;
						k_d2 = k_d2/10;
					}

				}
				k++;
			}
		}
	}
}
0