結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー fabled2468fabled2468
提出日時 2018-09-27 23:32:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 1,000 ms
コード長 837 bytes
コンパイル時間 3,360 ms
コンパイル使用メモリ 79,340 KB
実行使用メモリ 41,552 KB
最終ジャッジ日時 2024-10-12 04:39:44
合計ジャッジ時間 8,608 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,488 KB
testcase_01 AC 128 ms
41,292 KB
testcase_02 AC 128 ms
41,200 KB
testcase_03 AC 127 ms
41,052 KB
testcase_04 AC 130 ms
41,308 KB
testcase_05 AC 130 ms
41,176 KB
testcase_06 AC 130 ms
41,212 KB
testcase_07 AC 127 ms
41,280 KB
testcase_08 AC 129 ms
41,364 KB
testcase_09 AC 130 ms
41,188 KB
testcase_10 AC 140 ms
41,484 KB
testcase_11 AC 137 ms
41,340 KB
testcase_12 AC 138 ms
40,992 KB
testcase_13 AC 130 ms
41,312 KB
testcase_14 AC 133 ms
41,536 KB
testcase_15 AC 119 ms
39,928 KB
testcase_16 AC 130 ms
41,324 KB
testcase_17 AC 133 ms
41,252 KB
testcase_18 AC 130 ms
40,984 KB
testcase_19 AC 131 ms
41,168 KB
testcase_20 AC 133 ms
41,324 KB
testcase_21 AC 133 ms
40,972 KB
testcase_22 AC 133 ms
41,232 KB
testcase_23 AC 132 ms
41,316 KB
testcase_24 AC 129 ms
41,124 KB
testcase_25 AC 129 ms
41,340 KB
testcase_26 AC 127 ms
41,452 KB
testcase_27 AC 129 ms
41,324 KB
testcase_28 AC 127 ms
41,480 KB
testcase_29 AC 127 ms
41,196 KB
testcase_30 AC 129 ms
41,552 KB
testcase_31 AC 131 ms
41,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No637_FizzBizz {
    public static void main(String[] args) {

        Scanner scan = new Scanner(System.in);
        int[] list = new int[5];

        for (int i = 0; i < list.length; i++) {
            list[i] = scan.nextInt();
        }
        scan.close();
        int count = 0;

        for (int i = 0; i < list.length; i++) {

            int value = list[i];

            if (value % 3 == 0 && value % 5 == 0) {
                count = count + 8;
            } else if (value % 3 == 0 && value % 5 != 0) {
                count = count + 4;
            } else if (value % 3 != 0 && value % 5 == 0) {
                count = count + 4;
            } else {
                count = count + String.valueOf(value).length();
            }
        }

        System.out.println(count);
    }
}
0