結果

問題 No.207 世界のなんとか
ユーザー kaoetayakaoetaya
提出日時 2016-12-07 21:58:11
言語 Java
(openjdk 23)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 538 bytes
コンパイル時間 3,423 ms
コンパイル使用メモリ 74,196 KB
実行使用メモリ 41,392 KB
最終ジャッジ日時 2024-11-28 03:29:51
合計ジャッジ時間 5,805 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,956 KB
testcase_01 AC 123 ms
41,336 KB
testcase_02 AC 108 ms
39,980 KB
testcase_03 AC 105 ms
40,152 KB
testcase_04 AC 119 ms
39,832 KB
testcase_05 AC 124 ms
41,208 KB
testcase_06 AC 123 ms
41,392 KB
testcase_07 AC 103 ms
40,260 KB
testcase_08 AC 116 ms
40,064 KB
testcase_09 AC 104 ms
39,864 KB
testcase_10 AC 106 ms
40,156 KB
testcase_11 AC 115 ms
41,316 KB
testcase_12 AC 110 ms
40,120 KB
testcase_13 AC 109 ms
40,316 KB
testcase_14 AC 109 ms
39,948 KB
testcase_15 AC 125 ms
41,120 KB
testcase_16 AC 122 ms
41,232 KB
testcase_17 AC 116 ms
40,980 KB
testcase_18 AC 100 ms
39,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Test{
    public static void main(String[] args){
        Scanner s = new Scanner(System.in);
         int a = s.nextInt(),b = s.nextInt();

        for(int i=a;i<=b;i++){
        	if(i%3 == 0){
        		System.out.println(i);
        		continue;
        	}
        	else{
        		String str = String.valueOf(i);

        		for(int j=0;j<str.length();j++){
        			if(str.charAt(j) == '3'){
        				System.out.println(i);
        				break;
        			}
        		}
        	}
        }
    }
}
0