結果

問題 No.207 世界のなんとか
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-12 21:27:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 622 bytes
コンパイル時間 1,815 ms
コンパイル使用メモリ 77,648 KB
実行使用メモリ 41,672 KB
最終ジャッジ日時 2024-11-25 21:35:48
合計ジャッジ時間 4,900 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
39,964 KB
testcase_01 AC 103 ms
40,868 KB
testcase_02 AC 121 ms
40,948 KB
testcase_03 AC 119 ms
40,768 KB
testcase_04 AC 118 ms
40,936 KB
testcase_05 AC 110 ms
40,964 KB
testcase_06 AC 120 ms
41,160 KB
testcase_07 AC 117 ms
41,024 KB
testcase_08 AC 118 ms
41,136 KB
testcase_09 AC 107 ms
41,300 KB
testcase_10 AC 121 ms
41,048 KB
testcase_11 AC 121 ms
41,156 KB
testcase_12 AC 112 ms
41,672 KB
testcase_13 AC 113 ms
41,444 KB
testcase_14 AC 107 ms
39,748 KB
testcase_15 AC 122 ms
41,460 KB
testcase_16 AC 113 ms
40,992 KB
testcase_17 AC 107 ms
40,048 KB
testcase_18 AC 107 ms
40,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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){
                System.out.println(i);
                continue;
            }else{
                String t = Integer.toString(i);
                for(int j=0; j<t.length(); j++){
                    if( '3'==t.charAt(j) ){
                        System.out.println(i);
                        break;
                    }
                }
            }
        }
    }
}
0