結果

問題 No.207 世界のなんとか
ユーザー k__umek__ume
提出日時 2019-04-28 19:20:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 72 ms / 5,000 ms
コード長 786 bytes
コンパイル時間 2,401 ms
コンパイル使用メモリ 78,812 KB
実行使用メモリ 37,896 KB
最終ジャッジ日時 2024-05-10 00:08:24
合計ジャッジ時間 4,569 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
37,720 KB
testcase_01 AC 63 ms
37,660 KB
testcase_02 AC 72 ms
37,560 KB
testcase_03 AC 63 ms
37,580 KB
testcase_04 AC 61 ms
37,488 KB
testcase_05 AC 65 ms
37,540 KB
testcase_06 AC 61 ms
36,992 KB
testcase_07 AC 63 ms
37,464 KB
testcase_08 AC 63 ms
37,500 KB
testcase_09 AC 67 ms
37,556 KB
testcase_10 AC 66 ms
37,644 KB
testcase_11 AC 65 ms
37,416 KB
testcase_12 AC 72 ms
37,560 KB
testcase_13 AC 70 ms
37,808 KB
testcase_14 AC 71 ms
37,896 KB
testcase_15 AC 69 ms
37,376 KB
testcase_16 AC 66 ms
37,500 KB
testcase_17 AC 67 ms
37,720 KB
testcase_18 AC 65 ms
37,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main {
    public static void main(String... args) throws IOException {
        try (BufferedReader reader = new BufferedReader(new InputStreamReader(System.in))) {
            int[] arr = Arrays.stream(reader.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
            for (int i = arr[0]; i <= arr[1]; i++) {
                if (i % 3 == 0 || has3(i)) {
                    System.out.println(i);
                }
            }
        }
    }
    static boolean has3(int num) {
        for (int i = num; 0 < i; i /= 10) {
            if (i % 10 == 3) {
                return true;
            }
        }
        return false;
    }
}
0