結果

問題 No.207 世界のなんとか
ユーザー matsuyoshi30matsuyoshi30
提出日時 2015-12-31 23:19:18
言語 Java
(openjdk 23)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 706 bytes
コンパイル時間 2,573 ms
コンパイル使用メモリ 76,028 KB
実行使用メモリ 41,532 KB
最終ジャッジ日時 2024-10-09 10:41:38
合計ジャッジ時間 5,411 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,256 KB
testcase_01 AC 126 ms
41,344 KB
testcase_02 AC 129 ms
41,092 KB
testcase_03 AC 129 ms
41,372 KB
testcase_04 AC 122 ms
41,196 KB
testcase_05 AC 126 ms
41,324 KB
testcase_06 AC 108 ms
40,156 KB
testcase_07 AC 121 ms
41,064 KB
testcase_08 AC 119 ms
41,176 KB
testcase_09 AC 126 ms
41,276 KB
testcase_10 AC 127 ms
41,532 KB
testcase_11 AC 118 ms
40,844 KB
testcase_12 AC 113 ms
40,136 KB
testcase_13 AC 127 ms
41,496 KB
testcase_14 AC 128 ms
41,092 KB
testcase_15 AC 115 ms
40,256 KB
testcase_16 AC 121 ms
41,136 KB
testcase_17 AC 122 ms
41,164 KB
testcase_18 AC 125 ms
41,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Test {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String str1 = in.next();
        String str2 = in.next();
        int x = Integer.parseInt(str1);
        int y = Integer.parseInt(str2);

        int ans = 0;
        ArrayList<Integer> thList = new ArrayList<>();
        for(int i = x; i <= y; i++) {
            if(i % 3 == 0) {
                thList.add(i);
                ans++;
            } else if(String.valueOf(i).contains("3")) {
                thList.add(i);
                ans++;
            }
        }
        for(int i = 0; i < ans; i++) {
            System.out.println(thList.get(i));
        }
    }
}
0