結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー tentententen
提出日時 2020-11-12 09:18:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 1,000 ms
コード長 718 bytes
コンパイル時間 2,162 ms
コンパイル使用メモリ 74,764 KB
実行使用メモリ 41,500 KB
最終ジャッジ日時 2024-07-22 19:03:55
合計ジャッジ時間 6,074 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
40,156 KB
testcase_01 AC 98 ms
40,148 KB
testcase_02 AC 94 ms
39,804 KB
testcase_03 AC 109 ms
41,324 KB
testcase_04 AC 115 ms
41,140 KB
testcase_05 AC 106 ms
41,180 KB
testcase_06 AC 104 ms
40,824 KB
testcase_07 AC 101 ms
40,052 KB
testcase_08 AC 109 ms
40,076 KB
testcase_09 AC 119 ms
41,300 KB
testcase_10 AC 110 ms
41,324 KB
testcase_11 AC 103 ms
41,088 KB
testcase_12 AC 99 ms
40,240 KB
testcase_13 AC 97 ms
39,876 KB
testcase_14 AC 110 ms
40,992 KB
testcase_15 AC 102 ms
39,924 KB
testcase_16 AC 101 ms
39,936 KB
testcase_17 AC 106 ms
40,132 KB
testcase_18 AC 124 ms
41,164 KB
testcase_19 AC 111 ms
41,324 KB
testcase_20 AC 112 ms
40,956 KB
testcase_21 AC 115 ms
41,308 KB
testcase_22 AC 114 ms
41,136 KB
testcase_23 AC 113 ms
41,344 KB
testcase_24 AC 108 ms
41,384 KB
testcase_25 AC 98 ms
40,040 KB
testcase_26 AC 99 ms
40,016 KB
testcase_27 AC 108 ms
41,500 KB
testcase_28 AC 100 ms
40,108 KB
testcase_29 AC 111 ms
41,220 KB
testcase_30 AC 114 ms
40,188 KB
testcase_31 AC 109 ms
41,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int count = 0;
        for (int i = 0; i < 5; i++) {
            int x = sc.nextInt();
            if (x % 3 == 0 && x % 5 == 0) {
                count += 8;
            } else if (x % 3 == 0) {
                count += 4;
            } else if (x % 5 == 0) {
                count += 4;
            } else {
                count += getCount(x);
            }
        }
        System.out.println(count);
    }
    
    static int getCount(int x) {
        int count = 0;
        while (x > 0) {
            count++;
            x /= 10;
        }
        return count;
    }
}
0