結果

問題 No.207 世界のなんとか
ユーザー Shunsuke KamadaShunsuke Kamada
提出日時 2018-09-25 23:43:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 5,000 ms
コード長 482 bytes
コンパイル時間 6,427 ms
コンパイル使用メモリ 74,752 KB
実行使用メモリ 41,676 KB
最終ジャッジ日時 2024-10-07 02:31:22
合計ジャッジ時間 8,172 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,428 KB
testcase_01 AC 133 ms
41,164 KB
testcase_02 AC 135 ms
41,400 KB
testcase_03 AC 150 ms
41,304 KB
testcase_04 AC 133 ms
41,448 KB
testcase_05 AC 136 ms
41,536 KB
testcase_06 AC 134 ms
41,264 KB
testcase_07 AC 133 ms
41,228 KB
testcase_08 AC 132 ms
41,308 KB
testcase_09 AC 143 ms
41,452 KB
testcase_10 AC 132 ms
41,204 KB
testcase_11 AC 132 ms
41,536 KB
testcase_12 AC 132 ms
41,180 KB
testcase_13 AC 133 ms
41,316 KB
testcase_14 AC 134 ms
41,424 KB
testcase_15 AC 131 ms
41,464 KB
testcase_16 AC 131 ms
41,204 KB
testcase_17 AC 132 ms
41,068 KB
testcase_18 AC 131 ms
41,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.*;

public class No0207 {
    public static void main(String[] args) {

        Scanner scanner = new Scanner(System.in);
        PrintWriter out = new PrintWriter(System.out);

        int a = scanner.nextInt();
        int b = scanner.nextInt();

        for(int i = a; i <= b; i++) {
            if (Integer.toString(i).contains("3") || i%3 == 0) {
                out.println(i);
            }
        }
        out.flush();
    }
}
0