結果

問題 No.207 世界のなんとか
ユーザー DevbotBotDevbotBot
提出日時 2015-06-18 17:02:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 467 bytes
コンパイル時間 2,110 ms
コンパイル使用メモリ 74,340 KB
実行使用メモリ 45,060 KB
最終ジャッジ日時 2024-10-09 10:23:54
合計ジャッジ時間 5,224 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
45,060 KB
testcase_01 AC 128 ms
41,348 KB
testcase_02 AC 132 ms
41,152 KB
testcase_03 AC 115 ms
40,176 KB
testcase_04 AC 126 ms
41,400 KB
testcase_05 AC 129 ms
41,240 KB
testcase_06 AC 125 ms
41,452 KB
testcase_07 AC 125 ms
41,204 KB
testcase_08 AC 114 ms
39,956 KB
testcase_09 AC 133 ms
41,452 KB
testcase_10 AC 133 ms
41,412 KB
testcase_11 AC 126 ms
40,980 KB
testcase_12 AC 134 ms
41,148 KB
testcase_13 AC 134 ms
41,196 KB
testcase_14 AC 133 ms
41,304 KB
testcase_15 AC 131 ms
41,536 KB
testcase_16 AC 132 ms
41,040 KB
testcase_17 AC 113 ms
40,064 KB
testcase_18 AC 127 ms
41,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class No207{
    public static void main(String args[]){
        Scanner sc = new Scanner(System.in);
        Long a = sc.nextLong();
        Long b = sc.nextLong();
        for (Long i = a; i < b + 1; i++){
            if (i % 3 == 0){
                System.out.println(i);
            } else {
                if (String.valueOf(i).indexOf("3") > -1) {
                   System.out.println(i);
                }
            }
        }
    }
}
0