結果

問題 No.207 世界のなんとか
ユーザー mos_13184925mos_13184925
提出日時 2018-06-28 16:43:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 320 bytes
コンパイル時間 2,189 ms
コンパイル使用メモリ 74,364 KB
実行使用メモリ 54,440 KB
最終ジャッジ日時 2024-06-30 23:30:09
合計ジャッジ時間 5,428 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,836 KB
testcase_01 AC 135 ms
54,420 KB
testcase_02 AC 141 ms
53,944 KB
testcase_03 AC 135 ms
54,228 KB
testcase_04 AC 136 ms
53,992 KB
testcase_05 AC 137 ms
54,364 KB
testcase_06 AC 133 ms
54,356 KB
testcase_07 AC 132 ms
54,092 KB
testcase_08 AC 132 ms
54,232 KB
testcase_09 AC 137 ms
54,016 KB
testcase_10 AC 139 ms
53,768 KB
testcase_11 AC 138 ms
54,220 KB
testcase_12 AC 136 ms
53,956 KB
testcase_13 AC 142 ms
54,292 KB
testcase_14 AC 136 ms
54,132 KB
testcase_15 AC 136 ms
54,440 KB
testcase_16 AC 131 ms
54,132 KB
testcase_17 AC 132 ms
54,012 KB
testcase_18 AC 133 ms
53,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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