結果

問題 No.207 世界のなんとか
ユーザー yugi0922yugi0922
提出日時 2020-06-24 20:34:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 920 bytes
コンパイル時間 3,052 ms
コンパイル使用メモリ 74,452 KB
実行使用メモリ 41,544 KB
最終ジャッジ日時 2024-07-03 20:19:30
合計ジャッジ時間 5,810 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,172 KB
testcase_01 AC 95 ms
39,964 KB
testcase_02 AC 113 ms
41,248 KB
testcase_03 AC 115 ms
41,184 KB
testcase_04 AC 103 ms
40,592 KB
testcase_05 AC 100 ms
40,016 KB
testcase_06 AC 108 ms
41,164 KB
testcase_07 AC 98 ms
40,212 KB
testcase_08 AC 103 ms
40,924 KB
testcase_09 AC 108 ms
40,932 KB
testcase_10 AC 108 ms
40,796 KB
testcase_11 AC 107 ms
40,744 KB
testcase_12 AC 121 ms
41,468 KB
testcase_13 AC 118 ms
41,544 KB
testcase_14 AC 117 ms
40,996 KB
testcase_15 AC 115 ms
41,388 KB
testcase_16 AC 94 ms
40,208 KB
testcase_17 AC 93 ms
40,180 KB
testcase_18 AC 94 ms
40,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import static java.lang.System.*;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Scanner;

public class worldNabeatsu {
	public static void main(String[] args) throws IOException {
        Scanner sc = new Scanner(System.in);
		BufferedReader reader = new BufferedReader(new InputStreamReader(in));
		String[] inputs = reader.readLine().split(" ");
		int startNum = Integer.parseInt(inputs[0]);
		int endNum = Integer.parseInt(inputs[1]);
		for(int i = startNum; i <= endNum; i++){
			if(validThree(i)){
				System.out.println(i);
			}
		}
	}
	static boolean validThree(int num){
		boolean threeFlg = false;
		String str = String.valueOf(num);
		char[] charBox = str.toCharArray();
		for(int i = 0; i < charBox.length; i++){
			if(charBox[i] == '3'){
				threeFlg = true;
			}
		}
		if(num % 3 == 0 || threeFlg ){
			return true;
		}
		return false;

	}
}
0