結果

問題 No.207 世界のなんとか
ユーザー kurobei72kurobei72
提出日時 2018-01-19 14:02:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 5,000 ms
コード長 926 bytes
コンパイル時間 1,838 ms
コンパイル使用メモリ 75,152 KB
実行使用メモリ 54,504 KB
最終ジャッジ日時 2024-06-06 18:52:12
合計ジャッジ時間 4,954 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,944 KB
testcase_01 AC 112 ms
53,800 KB
testcase_02 AC 126 ms
54,364 KB
testcase_03 AC 130 ms
54,272 KB
testcase_04 AC 118 ms
54,096 KB
testcase_05 AC 117 ms
54,240 KB
testcase_06 AC 109 ms
53,300 KB
testcase_07 AC 117 ms
53,764 KB
testcase_08 AC 102 ms
52,660 KB
testcase_09 AC 120 ms
54,276 KB
testcase_10 AC 125 ms
54,040 KB
testcase_11 AC 124 ms
54,380 KB
testcase_12 AC 124 ms
54,024 KB
testcase_13 AC 127 ms
54,164 KB
testcase_14 AC 147 ms
54,404 KB
testcase_15 AC 136 ms
54,504 KB
testcase_16 AC 103 ms
52,832 KB
testcase_17 AC 108 ms
52,720 KB
testcase_18 AC 103 ms
53,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.lang.String;
import java.lang.Integer;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        Integer a = sc.nextInt();
        Integer b = sc.nextInt();
        
        for (int i = a; i <= b; i++) {
            boolean flag = false;
            int sum = 0;
            String[] aStr = a.toString().split("");
            for (int j = 0; j < aStr.length; j++) {
                int aInt = Integer.parseInt(aStr[j]);
                if (aInt == 3){
                    flag = true;
                }
                sum += aInt; 
            }
            if (!flag) {
                if (sum%3 == 0){
                    flag = true;
                }
            }
            if (flag){
                System.out.println(i);
            }
            a++;
        }
    }
}
0