結果

問題 No.207 世界のなんとか
ユーザー GchansanjouGchansanjou
提出日時 2018-02-11 14:47:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 50 ms / 5,000 ms
コード長 1,353 bytes
コンパイル時間 2,644 ms
コンパイル使用メモリ 77,468 KB
実行使用メモリ 37,348 KB
最終ジャッジ日時 2024-04-28 02:10:56
合計ジャッジ時間 4,181 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
36,940 KB
testcase_01 AC 44 ms
37,080 KB
testcase_02 AC 48 ms
37,192 KB
testcase_03 AC 47 ms
37,348 KB
testcase_04 AC 45 ms
36,880 KB
testcase_05 AC 50 ms
37,064 KB
testcase_06 AC 48 ms
37,232 KB
testcase_07 AC 49 ms
37,096 KB
testcase_08 AC 44 ms
37,020 KB
testcase_09 AC 46 ms
36,980 KB
testcase_10 AC 50 ms
37,232 KB
testcase_11 AC 46 ms
37,188 KB
testcase_12 AC 45 ms
37,216 KB
testcase_13 AC 46 ms
37,088 KB
testcase_14 AC 48 ms
36,932 KB
testcase_15 AC 47 ms
37,220 KB
testcase_16 AC 43 ms
37,220 KB
testcase_17 AC 45 ms
37,068 KB
testcase_18 AC 49 ms
37,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukiCoder;

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

public class No00207 {

	public static void main(String[] args) {

		BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in));

		String[] input = new String[2];

		try {
			input = bufferedReader.readLine().split(" ");

			int start = Integer.parseInt(input[0]);
			int end = Integer.parseInt(input[1]);

			calculation(start,end);

		} catch (IOException e) {
			e.printStackTrace();
		}
	}


	public static void calculation(int start, int end) {
		if (start > end) {
			return;
		}

		for (; start <= end ; start++) {
			if (isMultipleOfThree(start) || isDigitIncludingThree(start)) {
				System.out.println(start);
			}
		}
	}

	public static Boolean isMultipleOfThree(int input) {
		int fullDigitAns = 0;
		String check = String.valueOf(input);
		for (int i = 0 ; i < check.length() ; i++) {
			int digit = Integer.parseInt(String.valueOf(check.charAt(i)));
			fullDigitAns += digit;
		}
		return fullDigitAns%3 == 0 ? true : false;
	}

	public static Boolean isDigitIncludingThree(int input) {
		String check = String.valueOf(input);
		for (int i = 0 ; i < check.length() ; i++) {
			int digit = Integer.parseInt(String.valueOf(check.charAt(i)));
			if (digit == 3) return true;
		}
		return false;
	}

}
0