結果

問題 No.207 世界のなんとか
ユーザー DevbotBotDevbotBot
提出日時 2015-06-18 16:48:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 464 bytes
コンパイル時間 4,950 ms
コンパイル使用メモリ 85,096 KB
実行使用メモリ 56,440 KB
最終ジャッジ日時 2024-07-07 03:40:58
合計ジャッジ時間 5,698 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 138 ms
53,784 KB
testcase_04 AC 135 ms
53,672 KB
testcase_05 WA -
testcase_06 AC 133 ms
54,100 KB
testcase_07 AC 134 ms
54,004 KB
testcase_08 AC 137 ms
53,916 KB
testcase_09 AC 140 ms
53,928 KB
testcase_10 WA -
testcase_11 AC 140 ms
54,256 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 141 ms
54,148 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 135 ms
53,700 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; i++){
            if (i % 3 == 0){
                System.out.println(i);
            } else {
                if (String.valueOf(i).indexOf("3") != -1) {
                   System.out.println(i);
                }
            }
        }
    }
}
0