結果

問題 No.207 世界のなんとか
ユーザー qorrnsmjqorrnsmj
提出日時 2023-01-20 14:47:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 362 bytes
コンパイル時間 3,481 ms
コンパイル使用メモリ 74,496 KB
実行使用メモリ 54,496 KB
最終ジャッジ日時 2024-06-23 04:20:49
合計ジャッジ時間 7,146 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,944 KB
testcase_01 AC 128 ms
53,968 KB
testcase_02 AC 133 ms
54,040 KB
testcase_03 AC 131 ms
53,936 KB
testcase_04 AC 124 ms
54,140 KB
testcase_05 AC 133 ms
54,144 KB
testcase_06 AC 130 ms
53,652 KB
testcase_07 AC 129 ms
54,212 KB
testcase_08 AC 125 ms
54,020 KB
testcase_09 AC 120 ms
52,980 KB
testcase_10 AC 135 ms
53,980 KB
testcase_11 AC 135 ms
54,100 KB
testcase_12 AC 135 ms
54,064 KB
testcase_13 AC 134 ms
53,768 KB
testcase_14 AC 136 ms
54,496 KB
testcase_15 AC 135 ms
54,060 KB
testcase_16 AC 127 ms
53,836 KB
testcase_17 AC 129 ms
54,120 KB
testcase_18 AC 130 ms
54,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class no207 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();

        for (; b>=a; a++) {
            if (String.valueOf(a).contains("3") || a % 3 == 0) {
                System.out.println(a);
            }
        }
    }
}
0