結果

問題 No.207 世界のなんとか
ユーザー UTF-9UTF-9
提出日時 2015-05-31 14:33:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 928 bytes
コンパイル時間 2,291 ms
コンパイル使用メモリ 77,040 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-10-09 10:21:48
合計ジャッジ時間 5,585 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,916 KB
testcase_01 AC 133 ms
54,264 KB
testcase_02 AC 140 ms
54,008 KB
testcase_03 AC 136 ms
53,964 KB
testcase_04 AC 134 ms
54,240 KB
testcase_05 AC 137 ms
54,000 KB
testcase_06 AC 132 ms
54,292 KB
testcase_07 AC 132 ms
54,272 KB
testcase_08 AC 135 ms
54,064 KB
testcase_09 AC 134 ms
53,952 KB
testcase_10 AC 137 ms
53,884 KB
testcase_11 AC 137 ms
54,184 KB
testcase_12 AC 140 ms
54,028 KB
testcase_13 AC 140 ms
54,228 KB
testcase_14 AC 140 ms
54,164 KB
testcase_15 AC 137 ms
54,140 KB
testcase_16 AC 133 ms
54,160 KB
testcase_17 AC 133 ms
54,144 KB
testcase_18 AC 130 ms
54,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.regex.*;
import java.util.Collections;

public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int a = in.nextInt();
        int b = in.nextInt();
        ArrayList<Integer> list = new ArrayList<Integer>();
        String regex = "3";
        Pattern p = Pattern.compile(regex);
        for (int i = a; i <= b ; i++) {
            //System.out.println(i);
            if (i % 3 == 0) {
                //System.out.println(i);
                list.add (i);
            } else {
                String str = String.valueOf(i);
                if (p.matcher(str).find()) {
                    list.add(i);
                }
            }
        }
        Collections.sort(list);
        //System.out.println(list);
        for ( int i = 0 ; i < list.size() ; i++ ) {
            System.out.println(list.get(i));
        }
    }
}
0