結果

問題 No.207 世界のなんとか
ユーザー ffmm00ffmm00
提出日時 2015-06-02 02:34:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 368 bytes
コンパイル時間 3,557 ms
コンパイル使用メモリ 74,616 KB
実行使用メモリ 52,168 KB
最終ジャッジ日時 2024-10-09 10:22:38
合計ジャッジ時間 6,916 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
52,168 KB
testcase_01 AC 127 ms
50,048 KB
testcase_02 AC 143 ms
50,080 KB
testcase_03 AC 132 ms
49,928 KB
testcase_04 AC 129 ms
50,160 KB
testcase_05 AC 119 ms
48,880 KB
testcase_06 AC 127 ms
50,064 KB
testcase_07 AC 120 ms
49,244 KB
testcase_08 AC 121 ms
49,452 KB
testcase_09 AC 137 ms
49,916 KB
testcase_10 AC 135 ms
49,748 KB
testcase_11 AC 133 ms
49,976 KB
testcase_12 AC 136 ms
50,092 KB
testcase_13 AC 145 ms
50,092 KB
testcase_14 AC 123 ms
49,100 KB
testcase_15 AC 132 ms
49,932 KB
testcase_16 AC 128 ms
49,796 KB
testcase_17 AC 132 ms
50,096 KB
testcase_18 AC 129 ms
50,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N207 {

	public static void main(String[] args) {

		Scanner sca = new Scanner(System.in);
		Long A = sca.nextLong();
		Long B = sca.nextLong();

		for (Long i = A; i <= B; i++) {
			String s = Long.toString(i);
			if (i % 3 == 0)
				System.out.println(i);
			else if (s.indexOf('3') >= 0)
				System.out.println(i);

		}

	}
}
0