結果

問題 No.207 世界のなんとか
ユーザー joicii3joicii3
提出日時 2019-08-11 20:16:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 777 bytes
コンパイル時間 2,340 ms
コンパイル使用メモリ 74,748 KB
実行使用メモリ 54,388 KB
最終ジャッジ日時 2024-09-14 00:19:36
合計ジャッジ時間 5,511 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,704 KB
testcase_01 AC 127 ms
53,964 KB
testcase_02 AC 132 ms
54,136 KB
testcase_03 AC 130 ms
54,388 KB
testcase_04 AC 126 ms
54,088 KB
testcase_05 AC 130 ms
54,020 KB
testcase_06 AC 128 ms
53,916 KB
testcase_07 AC 127 ms
54,072 KB
testcase_08 AC 130 ms
53,812 KB
testcase_09 AC 131 ms
54,124 KB
testcase_10 AC 131 ms
53,840 KB
testcase_11 AC 129 ms
54,288 KB
testcase_12 AC 129 ms
54,212 KB
testcase_13 AC 133 ms
54,012 KB
testcase_14 AC 132 ms
54,156 KB
testcase_15 AC 132 ms
54,060 KB
testcase_16 AC 125 ms
54,028 KB
testcase_17 AC 126 ms
54,160 KB
testcase_18 AC 125 ms
53,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        int start = Integer.parseInt(sc.next());
        int end = Integer.parseInt(sc.next());
        boolean printFlg = false;
        for (int i = start; i <= end; i++) {
            String toStr = Integer.toString(i);
            for (int j = 0; j < toStr.length(); j++) {
                if (toStr.charAt(j) == '3') {
                    printFlg = true;
                    break;
                }
            }
            if (i % 3 == 0) {
                printFlg = true;
            }
            if (printFlg) {
                System.out.println(i);   
            }
            printFlg = false;
        }
    }
}
0