結果

問題 No.207 世界のなんとか
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-14 13:17:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 283 bytes
コンパイル時間 2,097 ms
コンパイル使用メモリ 74,440 KB
実行使用メモリ 54,288 KB
最終ジャッジ日時 2024-09-13 11:20:41
合計ジャッジ時間 5,518 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
52,704 KB
testcase_01 AC 130 ms
54,288 KB
testcase_02 AC 124 ms
53,056 KB
testcase_03 AC 134 ms
54,204 KB
testcase_04 AC 133 ms
54,048 KB
testcase_05 AC 139 ms
54,196 KB
testcase_06 AC 129 ms
53,828 KB
testcase_07 AC 132 ms
54,044 KB
testcase_08 AC 134 ms
54,048 KB
testcase_09 AC 134 ms
54,076 KB
testcase_10 AC 133 ms
53,780 KB
testcase_11 AC 138 ms
54,120 KB
testcase_12 AC 125 ms
52,800 KB
testcase_13 AC 138 ms
54,160 KB
testcase_14 AC 134 ms
54,200 KB
testcase_15 AC 133 ms
54,020 KB
testcase_16 AC 116 ms
52,724 KB
testcase_17 AC 134 ms
54,172 KB
testcase_18 AC 130 ms
54,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		int a = sc.nextInt(); int b = sc.nextInt();
		for (int i=a; i<=b; i++) {
			if (i%3==0 || String.valueOf(i).contains("3")) System.out.println(i);
		}
		
	}
}
0