結果

問題 No.207 世界のなんとか
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-30 14:24:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 861 bytes
コンパイル時間 11,331 ms
コンパイル使用メモリ 74,368 KB
実行使用メモリ 50,372 KB
最終ジャッジ日時 2024-09-13 23:39:08
合計ジャッジ時間 4,112 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,036 KB
testcase_01 AC 54 ms
49,992 KB
testcase_02 AC 58 ms
50,192 KB
testcase_03 AC 55 ms
50,276 KB
testcase_04 AC 55 ms
50,124 KB
testcase_05 AC 55 ms
49,896 KB
testcase_06 AC 54 ms
49,960 KB
testcase_07 AC 55 ms
50,204 KB
testcase_08 AC 55 ms
50,212 KB
testcase_09 AC 55 ms
50,156 KB
testcase_10 AC 56 ms
49,908 KB
testcase_11 AC 56 ms
50,236 KB
testcase_12 AC 55 ms
50,096 KB
testcase_13 AC 56 ms
50,032 KB
testcase_14 AC 56 ms
50,080 KB
testcase_15 AC 55 ms
50,372 KB
testcase_16 AC 56 ms
50,004 KB
testcase_17 AC 54 ms
50,180 KB
testcase_18 AC 54 ms
50,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import static java.lang.System.in;


public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        String[] inputs = reader.readLine().split(" ");
        long A = Long.parseLong(inputs[0]);
        long B = Long.parseLong(inputs[1]);
        for (long i = A; i <= B; i++) {
            if (i % 3 == 0 || containsThree(i)) {
                System.out.println(i);
            }
        }
    }
    
    private static boolean containsThree(long n) {
        String ns = String.valueOf(n);
        for (int i = 0; i < ns.length(); i++) {
            if (ns.charAt(i) == '3') {
                return true;
            }
        }
        return false;
    }
}
0