結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 115 ms
53,880 KB
testcase_02 WA -
testcase_03 AC 118 ms
53,952 KB
testcase_04 AC 115 ms
53,868 KB
testcase_05 WA -
testcase_06 AC 114 ms
54,044 KB
testcase_07 AC 122 ms
53,904 KB
testcase_08 AC 114 ms
54,008 KB
testcase_09 AC 125 ms
53,736 KB
testcase_10 AC 123 ms
53,856 KB
testcase_11 AC 112 ms
55,584 KB
testcase_12 AC 118 ms
53,824 KB
testcase_13 AC 109 ms
52,940 KB
testcase_14 AC 127 ms
54,100 KB
testcase_15 AC 109 ms
53,212 KB
testcase_16 AC 115 ms
53,996 KB
testcase_17 AC 123 ms
53,984 KB
testcase_18 AC 99 ms
52,692 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