結果

問題 No.207 世界のなんとか
ユーザー mazeppa1108mazeppa1108
提出日時 2015-09-19 14:52:42
言語 Java
(openjdk 23)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 358 bytes
コンパイル時間 3,540 ms
コンパイル使用メモリ 74,472 KB
実行使用メモリ 41,648 KB
最終ジャッジ日時 2024-10-09 10:32:58
合計ジャッジ時間 6,514 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
40,212 KB
testcase_01 AC 129 ms
41,492 KB
testcase_02 AC 134 ms
41,648 KB
testcase_03 AC 116 ms
40,312 KB
testcase_04 AC 129 ms
41,480 KB
testcase_05 AC 130 ms
41,492 KB
testcase_06 AC 123 ms
40,704 KB
testcase_07 AC 126 ms
41,388 KB
testcase_08 AC 127 ms
41,356 KB
testcase_09 AC 123 ms
40,700 KB
testcase_10 AC 118 ms
40,300 KB
testcase_11 AC 130 ms
41,124 KB
testcase_12 AC 131 ms
41,228 KB
testcase_13 AC 132 ms
41,432 KB
testcase_14 AC 125 ms
40,704 KB
testcase_15 AC 130 ms
41,168 KB
testcase_16 AC 127 ms
41,372 KB
testcase_17 AC 127 ms
41,132 KB
testcase_18 AC 127 ms
41,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package hokuAlgo31;
import java.util.*;

public class Main1 {
	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).contains("3")) {
				System.out.println(i);
			}
		}
	}
}
0