結果

問題 No.207 世界のなんとか
ユーザー kashiwagi513kashiwagi513
提出日時 2019-02-19 20:59:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 535 bytes
コンパイル時間 2,019 ms
コンパイル使用メモリ 74,672 KB
実行使用メモリ 54,120 KB
最終ジャッジ日時 2024-10-12 19:36:42
合計ジャッジ時間 5,219 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
52,788 KB
testcase_01 AC 123 ms
53,876 KB
testcase_02 AC 130 ms
53,844 KB
testcase_03 AC 129 ms
53,844 KB
testcase_04 AC 126 ms
53,984 KB
testcase_05 AC 129 ms
54,080 KB
testcase_06 AC 124 ms
53,880 KB
testcase_07 AC 122 ms
53,816 KB
testcase_08 AC 109 ms
52,740 KB
testcase_09 AC 129 ms
54,108 KB
testcase_10 AC 130 ms
53,792 KB
testcase_11 AC 129 ms
54,120 KB
testcase_12 AC 127 ms
53,888 KB
testcase_13 AC 126 ms
54,000 KB
testcase_14 AC 127 ms
54,076 KB
testcase_15 AC 126 ms
53,672 KB
testcase_16 AC 124 ms
53,960 KB
testcase_17 AC 125 ms
53,836 KB
testcase_18 AC 123 ms
53,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

class Main {
    public static boolean hasThree(int n){
    	if(n==0){ return false; }
    	else if((n-3)%10 == 0){ return true; }
    	else { return hasThree(n/10); }
    }
    public static void main (String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = Integer.parseInt(sc.next());
        int b = Integer.parseInt(sc.next());
        for(int i = a; i <= b; i++){
            if (i%3 == 0 || hasThree(i)) { System.out.println(i);}
        }
    }
}
0