結果

問題 No.207 世界のなんとか
ユーザー kurobei72kurobei72
提出日時 2018-01-19 14:02:07
言語 Java
(openjdk 23)
結果
AC  
実行時間 183 ms / 5,000 ms
コード長 926 bytes
コンパイル時間 2,327 ms
コンパイル使用メモリ 75,008 KB
実行使用メモリ 41,672 KB
最終ジャッジ日時 2024-12-24 12:03:56
合計ジャッジ時間 6,195 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
41,284 KB
testcase_01 AC 148 ms
41,236 KB
testcase_02 AC 160 ms
41,084 KB
testcase_03 AC 156 ms
41,464 KB
testcase_04 AC 150 ms
41,144 KB
testcase_05 AC 157 ms
41,008 KB
testcase_06 AC 145 ms
41,088 KB
testcase_07 AC 146 ms
40,940 KB
testcase_08 AC 146 ms
41,164 KB
testcase_09 AC 151 ms
41,292 KB
testcase_10 AC 153 ms
41,532 KB
testcase_11 AC 154 ms
41,028 KB
testcase_12 AC 157 ms
41,528 KB
testcase_13 AC 156 ms
41,156 KB
testcase_14 AC 183 ms
41,672 KB
testcase_15 AC 179 ms
41,532 KB
testcase_16 AC 150 ms
41,256 KB
testcase_17 AC 143 ms
41,264 KB
testcase_18 AC 146 ms
41,280 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