結果

問題 No.207 世界のなんとか
ユーザー oyafusooyafuso
提出日時 2019-03-11 14:45:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 1,089 bytes
コンパイル時間 2,170 ms
コンパイル使用メモリ 76,348 KB
実行使用メモリ 54,496 KB
最終ジャッジ日時 2024-06-23 15:31:31
合計ジャッジ時間 5,477 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,212 KB
testcase_01 AC 128 ms
54,496 KB
testcase_02 AC 135 ms
54,084 KB
testcase_03 AC 133 ms
54,212 KB
testcase_04 AC 129 ms
54,188 KB
testcase_05 AC 134 ms
54,264 KB
testcase_06 AC 129 ms
54,012 KB
testcase_07 AC 129 ms
53,832 KB
testcase_08 AC 133 ms
54,232 KB
testcase_09 AC 132 ms
53,980 KB
testcase_10 AC 136 ms
54,140 KB
testcase_11 AC 134 ms
53,844 KB
testcase_12 AC 134 ms
53,804 KB
testcase_13 AC 139 ms
54,088 KB
testcase_14 AC 134 ms
53,972 KB
testcase_15 AC 135 ms
54,148 KB
testcase_16 AC 131 ms
54,084 KB
testcase_17 AC 130 ms
53,988 KB
testcase_18 AC 130 ms
54,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {

	private static final String SPLIT_STR = " ";
	private static final int SEARCH_NUM = 3;

	public static void main(String[] args) {
		// Scanner生成
		Scanner sc = new Scanner(System.in);
		// 入力設定
		String input = sc.nextLine();
		String[] split = input.split(SPLIT_STR);
		List<Integer> numList = new ArrayList<>(split.length);
		for (int i = 0; i < split.length; i++) {
			numList.add(Integer.parseInt(split[i]));
		}
		// Scannerクローズ
		sc.close();

		/* メイン処理開始 */
		// 変数初期化
		int result = 0;
		int A = numList.get(0);
		int B = numList.get(1);
		List<Integer> list = new ArrayList<>();

		for (int i = A; i <= B; i++) {
			if (i % SEARCH_NUM == 0 || isContain(i, SEARCH_NUM)) {
				// 結果出力
				System.out.println(i);
			}
		}
		/* メイン処理終了 */
	}

	// num1にnum2が含まれていればtrue, 含まれていないfalse
	private static boolean isContain(int num1, int num2) {
		String str1 = String.valueOf(num1);
		String str2 = String.valueOf(num2);
		return str1.contains(str2);
	}
}
0