結果

問題 No.207 世界のなんとか
ユーザー yonaka_gggyonaka_ggg
提出日時 2020-09-06 13:18:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 718 bytes
コンパイル時間 1,939 ms
コンパイル使用メモリ 77,888 KB
実行使用メモリ 41,672 KB
最終ジャッジ日時 2024-05-06 20:59:41
合計ジャッジ時間 4,828 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 102 ms
39,992 KB
testcase_02 WA -
testcase_03 AC 114 ms
41,124 KB
testcase_04 AC 110 ms
39,924 KB
testcase_05 WA -
testcase_06 AC 117 ms
40,992 KB
testcase_07 AC 118 ms
41,352 KB
testcase_08 AC 109 ms
41,048 KB
testcase_09 AC 105 ms
40,152 KB
testcase_10 AC 114 ms
40,676 KB
testcase_11 AC 103 ms
40,128 KB
testcase_12 AC 115 ms
41,144 KB
testcase_13 AC 120 ms
41,044 KB
testcase_14 AC 111 ms
41,208 KB
testcase_15 AC 108 ms
40,024 KB
testcase_16 AC 101 ms
39,944 KB
testcase_17 AC 111 ms
41,072 KB
testcase_18 AC 108 ms
40,892 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 % 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