結果

問題 No.207 世界のなんとか
ユーザー SaYaSaYa
提出日時 2015-11-07 17:38:39
言語 Java
(openjdk 23)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 908 bytes
コンパイル時間 2,147 ms
コンパイル使用メモリ 74,604 KB
実行使用メモリ 41,532 KB
最終ジャッジ日時 2024-10-09 10:38:21
合計ジャッジ時間 5,269 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
40,992 KB
testcase_01 AC 123 ms
41,044 KB
testcase_02 AC 122 ms
40,032 KB
testcase_03 AC 124 ms
41,180 KB
testcase_04 AC 132 ms
40,760 KB
testcase_05 AC 135 ms
41,112 KB
testcase_06 AC 126 ms
41,376 KB
testcase_07 AC 122 ms
41,176 KB
testcase_08 AC 124 ms
41,184 KB
testcase_09 AC 127 ms
41,008 KB
testcase_10 AC 129 ms
41,180 KB
testcase_11 AC 131 ms
41,308 KB
testcase_12 AC 129 ms
41,364 KB
testcase_13 AC 127 ms
41,132 KB
testcase_14 AC 123 ms
41,004 KB
testcase_15 AC 132 ms
41,532 KB
testcase_16 AC 123 ms
41,124 KB
testcase_17 AC 113 ms
40,688 KB
testcase_18 AC 109 ms
40,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int a = Integer.parseInt(scanner.next());
        int b = Integer.parseInt(scanner.next());

        for (int i = a; i <= b; i++) {
            boolean isOutputNum = (isThreeMultiple(i)) || (isThreeContains(i));
            if (isOutputNum) {
                System.out.println(i);
            }
        }
    }

    private static boolean isThreeMultiple(int num) {
        return (num % 3 == 0);
    }

    private static boolean isThreeContains(int num) {
        String numText = Integer.toString(num);
        for (int i = 0; i < numText.length(); i++) {
            String subTextNum = numText.substring(i, i + 1);
            if (Integer.parseInt(subTextNum) == 3) {
                return true;
            }
        }
        return false;
    }
}
0