結果

問題 No.207 世界のなんとか
ユーザー atkrymatkrym
提出日時 2016-10-19 14:20:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 587 bytes
コンパイル時間 1,983 ms
コンパイル使用メモリ 74,204 KB
実行使用メモリ 41,584 KB
最終ジャッジ日時 2024-11-22 16:26:16
合計ジャッジ時間 5,045 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,056 KB
testcase_01 AC 125 ms
41,320 KB
testcase_02 AC 121 ms
41,336 KB
testcase_03 AC 123 ms
41,140 KB
testcase_04 AC 105 ms
40,120 KB
testcase_05 AC 108 ms
40,248 KB
testcase_06 AC 118 ms
41,020 KB
testcase_07 AC 122 ms
41,376 KB
testcase_08 AC 123 ms
41,584 KB
testcase_09 AC 124 ms
41,132 KB
testcase_10 AC 124 ms
41,512 KB
testcase_11 AC 121 ms
41,188 KB
testcase_12 AC 116 ms
40,320 KB
testcase_13 AC 131 ms
41,344 KB
testcase_14 AC 124 ms
40,876 KB
testcase_15 AC 132 ms
41,336 KB
testcase_16 AC 124 ms
41,292 KB
testcase_17 AC 120 ms
41,344 KB
testcase_18 AC 122 ms
41,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        int a = sc.nextInt();
        int b = sc.nextInt();
        
        for (int i = a;i <= b;i++) {
            if (isContain(i) || isMod(i)) {
                System.out.println(i);
            }
        }
    }
    
    private static boolean isContain(int i) {
        String s = String.valueOf(i);
        return s.indexOf("3") >= 0;
    }
    
    private static boolean isMod(int i) {
        return i%3==0;
    }
}
0