結果

問題 No.207 世界のなんとか
ユーザー YOSHIYOSHI
提出日時 2021-03-05 21:51:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 341 bytes
コンパイル時間 3,365 ms
コンパイル使用メモリ 74,864 KB
実行使用メモリ 41,332 KB
最終ジャッジ日時 2024-10-07 01:30:59
合計ジャッジ時間 5,954 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,332 KB
testcase_01 AC 123 ms
40,988 KB
testcase_02 AC 134 ms
40,940 KB
testcase_03 AC 108 ms
40,272 KB
testcase_04 AC 111 ms
41,108 KB
testcase_05 AC 114 ms
40,872 KB
testcase_06 AC 111 ms
40,872 KB
testcase_07 AC 97 ms
39,284 KB
testcase_08 AC 100 ms
39,736 KB
testcase_09 AC 122 ms
41,272 KB
testcase_10 AC 111 ms
40,248 KB
testcase_11 AC 122 ms
40,840 KB
testcase_12 AC 106 ms
40,036 KB
testcase_13 AC 102 ms
39,632 KB
testcase_14 AC 117 ms
40,912 KB
testcase_15 AC 102 ms
39,848 KB
testcase_16 AC 106 ms
40,048 KB
testcase_17 AC 95 ms
39,484 KB
testcase_18 AC 113 ms
41,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No00000207_Main2 {

	public static void main(String[] args) {

		Scanner scan = new Scanner(System.in);
		int a = scan.nextInt();
		int b = scan.nextInt();

		for(int i = a; i <= b; i++) {
			if(i % 3 == 0 || String.valueOf(i).contains("3")) {
				System.out.println(i);
			}
		}
		scan. close();
	}
}
0