結果

問題 No.207 世界のなんとか
ユーザー mazeppa1108mazeppa1108
提出日時 2015-05-31 14:14:26
言語 Java
(openjdk 23)
結果
AC  
実行時間 149 ms / 5,000 ms
コード長 337 bytes
コンパイル時間 2,681 ms
コンパイル使用メモリ 74,804 KB
実行使用メモリ 54,376 KB
最終ジャッジ日時 2024-10-09 10:20:19
合計ジャッジ時間 5,715 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,376 KB
testcase_01 AC 132 ms
54,192 KB
testcase_02 AC 149 ms
54,088 KB
testcase_03 AC 122 ms
52,964 KB
testcase_04 AC 118 ms
53,004 KB
testcase_05 AC 126 ms
53,120 KB
testcase_06 AC 133 ms
54,104 KB
testcase_07 AC 131 ms
53,964 KB
testcase_08 AC 133 ms
54,172 KB
testcase_09 AC 142 ms
53,996 KB
testcase_10 AC 144 ms
54,268 KB
testcase_11 AC 139 ms
54,212 KB
testcase_12 AC 139 ms
54,220 KB
testcase_13 AC 140 ms
53,736 KB
testcase_14 AC 144 ms
54,104 KB
testcase_15 AC 144 ms
53,948 KB
testcase_16 AC 131 ms
54,284 KB
testcase_17 AC 130 ms
53,864 KB
testcase_18 AC 133 ms
54,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	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) {
				System.out.println(i);
			} else if(String.valueOf(i).matches(".*3.*")) {
				System.out.println(i);
			}
		}
	}
}
0