結果

問題 No.207 世界のなんとか
ユーザー eagleeagle
提出日時 2022-05-26 14:31:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 5,000 ms
コード長 487 bytes
コンパイル時間 1,882 ms
コンパイル使用メモリ 73,904 KB
実行使用メモリ 41,444 KB
最終ジャッジ日時 2024-09-20 14:59:45
合計ジャッジ時間 4,837 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,208 KB
testcase_01 AC 110 ms
40,956 KB
testcase_02 AC 115 ms
41,388 KB
testcase_03 AC 112 ms
41,188 KB
testcase_04 AC 110 ms
41,236 KB
testcase_05 AC 102 ms
40,244 KB
testcase_06 AC 95 ms
39,700 KB
testcase_07 AC 115 ms
41,236 KB
testcase_08 AC 108 ms
41,016 KB
testcase_09 AC 113 ms
41,108 KB
testcase_10 AC 110 ms
40,876 KB
testcase_11 AC 113 ms
41,364 KB
testcase_12 AC 111 ms
41,044 KB
testcase_13 AC 113 ms
41,400 KB
testcase_14 AC 107 ms
40,448 KB
testcase_15 AC 112 ms
41,444 KB
testcase_16 AC 111 ms
41,148 KB
testcase_17 AC 110 ms
41,176 KB
testcase_18 AC 110 ms
41,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		int A = sc.nextInt();
		int B = sc.nextInt();
		for(int i = A; i <= B; i++) {
			if(i % 3 == 0) {
				System.out.println(i);
			} else {
				int num = i;
				while(num > 0) {
					if(num % 10 == 3) {
						System.out.println(i);
						break;
					} else {
						num /= 10;
					}
				}
			}
		}
	}
}
0