結果

問題 No.207 世界のなんとか
ユーザー d_makid_maki
提出日時 2019-03-11 16:27:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 466 bytes
コンパイル時間 3,146 ms
コンパイル使用メモリ 74,852 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-06-23 15:36:07
合計ジャッジ時間 6,493 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,052 KB
testcase_01 AC 121 ms
53,908 KB
testcase_02 AC 125 ms
54,040 KB
testcase_03 AC 118 ms
54,108 KB
testcase_04 AC 106 ms
53,416 KB
testcase_05 AC 128 ms
54,004 KB
testcase_06 AC 117 ms
54,220 KB
testcase_07 AC 116 ms
54,292 KB
testcase_08 AC 128 ms
53,956 KB
testcase_09 AC 122 ms
54,124 KB
testcase_10 AC 117 ms
54,216 KB
testcase_11 AC 109 ms
52,884 KB
testcase_12 AC 123 ms
54,268 KB
testcase_13 AC 127 ms
54,116 KB
testcase_14 AC 123 ms
54,200 KB
testcase_15 AC 124 ms
54,144 KB
testcase_16 AC 102 ms
53,040 KB
testcase_17 AC 100 ms
52,916 KB
testcase_18 AC 112 ms
54,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No207 {
	private static final String k = " ";

	public static void main(String[] args) {
		String input = null;
		Scanner sc = new Scanner(System.in);
		input = sc.nextLine();
		String[] split = input.split(k);
		int a = Integer.parseInt(split[0]);
		int b = Integer.parseInt(split[1]);

		for (int i = a; i <= b; i++) {
			if (i % 3 == 0 || String.valueOf(i).contains("3"))
				System.out.println(i);
		}
		sc.close();
	}

}
0