結果

問題 No.207 世界のなんとか
ユーザー ryosuke0825ryosuke0825
提出日時 2018-04-05 23:48:00
言語 Java
(openjdk 23)
結果
AC  
実行時間 153 ms / 5,000 ms
コード長 304 bytes
コンパイル時間 3,713 ms
コンパイル使用メモリ 75,288 KB
実行使用メモリ 41,784 KB
最終ジャッジ日時 2024-06-26 10:40:12
合計ジャッジ時間 6,509 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,408 KB
testcase_01 AC 124 ms
41,188 KB
testcase_02 AC 134 ms
41,468 KB
testcase_03 AC 129 ms
41,676 KB
testcase_04 AC 153 ms
41,572 KB
testcase_05 AC 119 ms
40,216 KB
testcase_06 AC 126 ms
41,488 KB
testcase_07 AC 117 ms
40,764 KB
testcase_08 AC 127 ms
41,428 KB
testcase_09 AC 132 ms
41,784 KB
testcase_10 AC 130 ms
41,496 KB
testcase_11 AC 114 ms
39,880 KB
testcase_12 AC 130 ms
41,488 KB
testcase_13 AC 137 ms
41,752 KB
testcase_14 AC 132 ms
41,384 KB
testcase_15 AC 119 ms
40,712 KB
testcase_16 AC 113 ms
40,288 KB
testcase_17 AC 113 ms
40,036 KB
testcase_18 AC 126 ms
41,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No207 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();

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

}
0