結果

問題 No.207 世界のなんとか
ユーザー yonaka_gggyonaka_ggg
提出日時 2020-09-06 13:36:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 756 bytes
コンパイル時間 3,662 ms
コンパイル使用メモリ 74,908 KB
実行使用メモリ 54,296 KB
最終ジャッジ日時 2024-05-06 20:59:56
合計ジャッジ時間 5,814 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 126 ms
54,188 KB
testcase_02 WA -
testcase_03 AC 133 ms
54,296 KB
testcase_04 AC 130 ms
54,052 KB
testcase_05 WA -
testcase_06 AC 127 ms
54,092 KB
testcase_07 AC 127 ms
53,748 KB
testcase_08 AC 115 ms
52,696 KB
testcase_09 AC 134 ms
54,020 KB
testcase_10 AC 136 ms
54,124 KB
testcase_11 AC 134 ms
54,024 KB
testcase_12 AC 138 ms
53,892 KB
testcase_13 AC 135 ms
54,020 KB
testcase_14 AC 136 ms
53,784 KB
testcase_15 AC 136 ms
54,100 KB
testcase_16 AC 131 ms
54,052 KB
testcase_17 AC 129 ms
54,060 KB
testcase_18 AC 129 ms
54,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();

        int num = a;
        if(a < b){
            if(a % 3 == 1) num += 2;
            if(a % 3 == 2) num += 1;
        }

        while (num <= b) {
            if(num % 3 == 0) {
                System.out.println(num);
            }
            else {
                String s = String.valueOf(num);
                for(int i = 0; i < s.length(); i++)
                    if(s.charAt(i) == '3') {
                        System.out.println(num);
                        break;
                    }
            }

            ++num;
        }
    }

}
0