結果

問題 No.207 世界のなんとか
ユーザー n_gojon_gojo
提出日時 2020-04-09 11:34:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 5,000 ms
コード長 751 bytes
コンパイル時間 3,621 ms
コンパイル使用メモリ 74,636 KB
実行使用メモリ 41,408 KB
最終ジャッジ日時 2024-07-22 10:52:09
合計ジャッジ時間 7,107 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,012 KB
testcase_01 AC 134 ms
41,244 KB
testcase_02 AC 146 ms
41,168 KB
testcase_03 AC 141 ms
41,144 KB
testcase_04 AC 138 ms
41,220 KB
testcase_05 AC 138 ms
41,216 KB
testcase_06 AC 133 ms
40,896 KB
testcase_07 AC 131 ms
40,972 KB
testcase_08 AC 120 ms
39,944 KB
testcase_09 AC 144 ms
40,988 KB
testcase_10 AC 148 ms
41,216 KB
testcase_11 AC 140 ms
41,016 KB
testcase_12 AC 152 ms
41,408 KB
testcase_13 AC 142 ms
41,268 KB
testcase_14 AC 138 ms
41,240 KB
testcase_15 AC 147 ms
41,236 KB
testcase_16 AC 135 ms
41,144 KB
testcase_17 AC 134 ms
41,144 KB
testcase_18 AC 133 ms
41,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No207 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);

        // int 1つ分を読み込む
        int a = sc.nextInt();
        int b = sc.nextInt();
        
        for (int i = a; i<=b; i++) {
            int check = i;
            if (check%3==0) {
                System.out.println(i);
            } else {
                while (check > 0) {
                    if (check%10 == 3) {
                        System.out.println(i);
                        break;
                    }
                    check /= 10;
                }
            }
        }

    }
}
0