結果

問題 No.207 世界のなんとか
ユーザー d07ki3bq1uzd07ki3bq1uz
提出日時 2019-09-28 00:44:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 362 bytes
コンパイル時間 2,087 ms
コンパイル使用メモリ 74,952 KB
実行使用メモリ 54,260 KB
最終ジャッジ日時 2024-09-25 03:48:45
合計ジャッジ時間 5,341 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
53,000 KB
testcase_01 AC 115 ms
52,836 KB
testcase_02 AC 130 ms
54,048 KB
testcase_03 AC 129 ms
53,900 KB
testcase_04 AC 125 ms
53,748 KB
testcase_05 AC 119 ms
52,872 KB
testcase_06 AC 121 ms
53,960 KB
testcase_07 AC 125 ms
53,888 KB
testcase_08 AC 125 ms
53,840 KB
testcase_09 AC 128 ms
53,920 KB
testcase_10 AC 122 ms
52,920 KB
testcase_11 AC 130 ms
54,260 KB
testcase_12 AC 133 ms
53,808 KB
testcase_13 AC 119 ms
53,032 KB
testcase_14 AC 130 ms
53,864 KB
testcase_15 AC 130 ms
54,068 KB
testcase_16 AC 126 ms
54,048 KB
testcase_17 AC 129 ms
53,960 KB
testcase_18 AC 124 ms
53,804 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();
    for(int i =a ; i<= b ; i++) {
        if(i%3 == 0 || Integer.toString(i).contains("3")){
            System.out.println(i);
        }
    }    
    
    
    }
}
0