結果

問題 No.207 世界のなんとか
ユーザー kazapyon27kazapyon27
提出日時 2017-05-04 20:46:41
言語 Java
(openjdk 23)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 660 bytes
コンパイル時間 3,262 ms
コンパイル使用メモリ 73,220 KB
実行使用メモリ 37,168 KB
最終ジャッジ日時 2024-09-14 07:15:26
合計ジャッジ時間 5,050 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,908 KB
testcase_01 AC 53 ms
36,664 KB
testcase_02 AC 54 ms
36,948 KB
testcase_03 AC 53 ms
36,724 KB
testcase_04 AC 53 ms
37,168 KB
testcase_05 AC 53 ms
37,000 KB
testcase_06 AC 54 ms
37,040 KB
testcase_07 AC 53 ms
36,888 KB
testcase_08 AC 53 ms
36,844 KB
testcase_09 AC 54 ms
36,856 KB
testcase_10 AC 54 ms
36,684 KB
testcase_11 AC 54 ms
36,740 KB
testcase_12 AC 55 ms
36,680 KB
testcase_13 AC 55 ms
36,684 KB
testcase_14 AC 54 ms
36,980 KB
testcase_15 AC 52 ms
37,024 KB
testcase_16 AC 53 ms
37,040 KB
testcase_17 AC 52 ms
36,680 KB
testcase_18 AC 51 ms
36,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*No.207 世界のなんとか*/
import java.io.*;
public class No207 {
	public static void main(String[] args) {
		String s_range,h_range[]=new String[2],s_check;
		int start,end,include_3;
		try(BufferedReader input =new BufferedReader(new InputStreamReader(System.in))){
			s_range=input.readLine();
			h_range=s_range.split(" ");
			start=Integer.parseInt(h_range[0]);
			end=Integer.parseInt(h_range[1]);
			for(int check=start;check<=end;check++){
				s_check=Integer.toString(check);
				include_3=s_check.indexOf("3");
				if(check%3==0||include_3!=-1){
					System.out.println(check);
				}
			}
		}catch(Exception e){
			e.printStackTrace();
		}
	}
}
0