結果

問題 No.207 世界のなんとか
ユーザー HaleakalaHaleakala
提出日時 2018-02-18 17:13:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 431 bytes
コンパイル時間 3,484 ms
コンパイル使用メモリ 74,636 KB
実行使用メモリ 54,392 KB
最終ジャッジ日時 2024-06-30 04:30:43
合計ジャッジ時間 6,545 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,232 KB
testcase_01 AC 126 ms
54,056 KB
testcase_02 AC 127 ms
53,868 KB
testcase_03 AC 126 ms
54,232 KB
testcase_04 AC 124 ms
53,808 KB
testcase_05 AC 131 ms
54,004 KB
testcase_06 AC 126 ms
53,996 KB
testcase_07 AC 122 ms
53,720 KB
testcase_08 AC 124 ms
54,260 KB
testcase_09 AC 128 ms
53,856 KB
testcase_10 AC 132 ms
54,192 KB
testcase_11 AC 128 ms
54,000 KB
testcase_12 AC 118 ms
52,940 KB
testcase_13 AC 129 ms
53,868 KB
testcase_14 AC 126 ms
54,392 KB
testcase_15 AC 129 ms
54,156 KB
testcase_16 AC 111 ms
52,748 KB
testcase_17 AC 125 ms
54,144 KB
testcase_18 AC 125 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Answer {
	public static void main(String str[]) {
        Scanner sc = new Scanner(System.in);

        int a = Integer.valueOf(sc.next());
        int b = Integer.valueOf(sc.next());

        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