結果

問題 No.207 世界のなんとか
ユーザー yonaka_gggyonaka_ggg
提出日時 2020-09-06 13:36:11
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 756 bytes
コンパイル時間 2,098 ms
コンパイル使用メモリ 74,268 KB
実行使用メモリ 54,264 KB
最終ジャッジ日時 2024-11-29 07:06:05
合計ジャッジ時間 4,694 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 121 ms
54,120 KB
testcase_02 WA -
testcase_03 AC 119 ms
54,080 KB
testcase_04 AC 118 ms
54,108 KB
testcase_05 WA -
testcase_06 AC 101 ms
52,872 KB
testcase_07 AC 101 ms
52,808 KB
testcase_08 AC 117 ms
54,224 KB
testcase_09 AC 126 ms
54,112 KB
testcase_10 AC 110 ms
53,120 KB
testcase_11 AC 111 ms
53,024 KB
testcase_12 AC 122 ms
54,224 KB
testcase_13 AC 122 ms
53,920 KB
testcase_14 AC 112 ms
52,948 KB
testcase_15 AC 124 ms
54,080 KB
testcase_16 AC 110 ms
52,920 KB
testcase_17 AC 116 ms
53,952 KB
testcase_18 AC 109 ms
52,940 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