結果

問題 No.207 世界のなんとか
ユーザー tentententen
提出日時 2020-11-11 08:24:27
言語 Java
(openjdk 23)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 691 bytes
コンパイル時間 4,771 ms
コンパイル使用メモリ 74,852 KB
実行使用メモリ 41,640 KB
最終ジャッジ日時 2024-07-22 18:18:23
合計ジャッジ時間 6,272 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
40,128 KB
testcase_01 AC 105 ms
41,028 KB
testcase_02 AC 104 ms
41,112 KB
testcase_03 AC 107 ms
41,560 KB
testcase_04 AC 110 ms
41,072 KB
testcase_05 AC 107 ms
41,420 KB
testcase_06 AC 107 ms
41,476 KB
testcase_07 AC 99 ms
40,392 KB
testcase_08 AC 108 ms
41,088 KB
testcase_09 AC 101 ms
40,788 KB
testcase_10 AC 110 ms
41,640 KB
testcase_11 AC 99 ms
40,456 KB
testcase_12 AC 108 ms
41,232 KB
testcase_13 AC 109 ms
41,252 KB
testcase_14 AC 122 ms
41,276 KB
testcase_15 AC 101 ms
40,656 KB
testcase_16 AC 108 ms
41,204 KB
testcase_17 AC 104 ms
41,520 KB
testcase_18 AC 105 ms
41,124 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();
        StringBuilder sb = new StringBuilder();
        for (int i = a; i <= b; i++) {
            if (isMatch(i)) {
                sb.append(i).append("\n");
            }
        }
        System.out.print(sb);
    }
    
    static boolean isMatch(int x) {
        int sum = 0;
        while (x > 0) {
            int mod = x % 10;
            if (mod == 3) {
                return true;
            }
            sum += mod;
            x /= 10;
        }
        return (sum % 3 == 0);
    }
}
0