結果

問題 No.207 世界のなんとか
ユーザー syusyu
提出日時 2020-08-25 18:36:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 345 bytes
コンパイル時間 2,232 ms
コンパイル使用メモリ 74,408 KB
実行使用メモリ 54,368 KB
最終ジャッジ日時 2024-11-06 11:38:20
合計ジャッジ時間 5,676 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
54,108 KB
testcase_01 AC 136 ms
54,188 KB
testcase_02 AC 139 ms
54,060 KB
testcase_03 AC 136 ms
54,084 KB
testcase_04 AC 138 ms
53,852 KB
testcase_05 AC 139 ms
53,916 KB
testcase_06 AC 136 ms
53,948 KB
testcase_07 AC 137 ms
53,936 KB
testcase_08 AC 133 ms
53,844 KB
testcase_09 AC 139 ms
54,368 KB
testcase_10 AC 138 ms
54,088 KB
testcase_11 AC 141 ms
53,892 KB
testcase_12 AC 139 ms
54,148 KB
testcase_13 AC 140 ms
53,896 KB
testcase_14 AC 141 ms
53,908 KB
testcase_15 AC 141 ms
54,236 KB
testcase_16 AC 136 ms
54,304 KB
testcase_17 AC 138 ms
53,932 KB
testcase_18 AC 134 ms
53,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        int a=sc.nextInt();
        int b=sc.nextInt();
        for(int i=a;i<=b;i++){
            if(i%3==0 || String.valueOf(i).contains("3")){
                System.out.println(i);
            }
        }
    }
}
0