結果

問題 No.207 世界のなんとか
ユーザー dazydazy
提出日時 2016-09-01 23:19:36
言語 Java
(openjdk 23)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 841 bytes
コンパイル時間 2,218 ms
コンパイル使用メモリ 74,160 KB
実行使用メモリ 54,324 KB
最終ジャッジ日時 2024-11-15 17:05:54
合計ジャッジ時間 4,832 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
53,032 KB
testcase_01 AC 118 ms
53,808 KB
testcase_02 AC 112 ms
53,312 KB
testcase_03 AC 119 ms
54,052 KB
testcase_04 AC 106 ms
53,052 KB
testcase_05 AC 124 ms
54,016 KB
testcase_06 AC 107 ms
53,180 KB
testcase_07 AC 106 ms
52,844 KB
testcase_08 AC 121 ms
53,836 KB
testcase_09 AC 124 ms
54,324 KB
testcase_10 AC 120 ms
54,200 KB
testcase_11 AC 114 ms
54,144 KB
testcase_12 AC 118 ms
53,764 KB
testcase_13 AC 117 ms
54,200 KB
testcase_14 AC 119 ms
54,024 KB
testcase_15 AC 121 ms
53,784 KB
testcase_16 AC 103 ms
53,044 KB
testcase_17 AC 118 ms
54,136 KB
testcase_18 AC 119 ms
53,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

        int A = scanner.nextInt();
        int B = scanner.nextInt();
        int dif = B - A;

        if (A < 1 || B < 1 || A > 2000000000 || B > 2000000000 || dif < 0 || dif > 99) System.exit(1);

        int tmp;
        for (int i = 0; i <= dif; i++) {
            if (A%3 == 0) {
                System.out.println(A);
            } else {
                tmp = A;
                for (int j = 0; j < 10; j++) {
                    if (tmp%10 == 3){
                        System.out.println(A);
                        break;
                    }

                    tmp = tmp/10;

                    if (tmp == 0) break;
                }
            }
            A++;
        }
    }
}
0