結果

問題 No.207 世界のなんとか
ユーザー yagi2yagi2
提出日時 2017-04-14 00:52:45
言語 Java
(openjdk 23)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 826 bytes
コンパイル時間 2,054 ms
コンパイル使用メモリ 74,448 KB
実行使用メモリ 41,588 KB
最終ジャッジ日時 2024-07-18 13:01:27
合計ジャッジ時間 5,128 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,112 KB
testcase_01 AC 119 ms
41,588 KB
testcase_02 AC 133 ms
41,416 KB
testcase_03 AC 123 ms
41,376 KB
testcase_04 AC 125 ms
40,920 KB
testcase_05 AC 127 ms
41,324 KB
testcase_06 AC 119 ms
41,268 KB
testcase_07 AC 127 ms
41,152 KB
testcase_08 AC 112 ms
39,876 KB
testcase_09 AC 130 ms
41,048 KB
testcase_10 AC 125 ms
41,400 KB
testcase_11 AC 125 ms
41,304 KB
testcase_12 AC 124 ms
41,476 KB
testcase_13 AC 124 ms
41,252 KB
testcase_14 AC 128 ms
41,364 KB
testcase_15 AC 127 ms
41,156 KB
testcase_16 AC 120 ms
41,472 KB
testcase_17 AC 121 ms
40,988 KB
testcase_18 AC 107 ms
41,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        long A = Long.parseLong(sc.next());
        long B = Long.parseLong(sc.next());

        for (long i = A; i <= B; i++) {
            boolean isNabeatsu = false;
            if (i % 3 == 0 || i % 30 == 0) {
                isNabeatsu = true;
            } else {
                String s = String.valueOf(i);
                String[] sp = s.split("");

                for (int j = 0; j < sp.length; j++) {
                    if (sp[j].equals("3")) {
                        isNabeatsu = true;
                        break;
                    }
                }
            }
            if (isNabeatsu) {
                System.out.println(i);
            }
        }
    }
}
0