結果

問題 No.207 世界のなんとか
ユーザー S1hoS1ho
提出日時 2017-02-19 11:59:14
言語 Java
(openjdk 23)
結果
AC  
実行時間 148 ms / 5,000 ms
コード長 723 bytes
コンパイル時間 3,794 ms
コンパイル使用メモリ 74,432 KB
実行使用メモリ 41,232 KB
最終ジャッジ日時 2024-12-30 04:41:53
合計ジャッジ時間 7,400 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
41,024 KB
testcase_01 AC 134 ms
39,780 KB
testcase_02 AC 144 ms
40,944 KB
testcase_03 AC 142 ms
40,960 KB
testcase_04 AC 139 ms
40,820 KB
testcase_05 AC 145 ms
41,156 KB
testcase_06 AC 121 ms
40,796 KB
testcase_07 AC 148 ms
41,212 KB
testcase_08 AC 141 ms
40,788 KB
testcase_09 AC 144 ms
41,196 KB
testcase_10 AC 138 ms
39,944 KB
testcase_11 AC 143 ms
41,192 KB
testcase_12 AC 136 ms
39,868 KB
testcase_13 AC 148 ms
41,232 KB
testcase_14 AC 132 ms
40,876 KB
testcase_15 AC 135 ms
40,824 KB
testcase_16 AC 142 ms
40,780 KB
testcase_17 AC 130 ms
40,900 KB
testcase_18 AC 144 ms
41,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class WorldN {

    public static void main(String[] args) {
       
        int a;
        int b;
        
        Scanner scanner = new Scanner(System.in);
        
        a = scanner.nextInt();
        b = scanner.nextInt();
        
        for(int i=a;i<=b;i++){
            if(i % 3 == 0 || isThree(i))
                 System.out.println(i);
            
        }
    }
    
    static boolean isThree(int num){
        
        String str = String.valueOf(num);
        
        for(int i=0;i<str.length();i++){
          
            if(str.charAt(i) == '3'){
                return true;
            }
            
        }
        
        return false;
        
    }
    
}
0