結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー sue_charosue_charo
提出日時 2017-04-28 12:34:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 1,000 ms
コード長 691 bytes
コンパイル時間 4,979 ms
コンパイル使用メモリ 75,120 KB
実行使用メモリ 54,284 KB
最終ジャッジ日時 2024-09-13 17:46:10
合計ジャッジ時間 10,077 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,116 KB
testcase_01 AC 131 ms
54,048 KB
testcase_02 AC 130 ms
54,040 KB
testcase_03 AC 132 ms
54,044 KB
testcase_04 AC 133 ms
53,988 KB
testcase_05 AC 134 ms
53,864 KB
testcase_06 AC 132 ms
53,884 KB
testcase_07 AC 134 ms
54,096 KB
testcase_08 AC 131 ms
54,112 KB
testcase_09 AC 134 ms
54,120 KB
testcase_10 AC 133 ms
53,884 KB
testcase_11 AC 133 ms
54,136 KB
testcase_12 AC 131 ms
54,156 KB
testcase_13 AC 133 ms
54,044 KB
testcase_14 AC 133 ms
54,152 KB
testcase_15 AC 134 ms
53,852 KB
testcase_16 AC 132 ms
54,112 KB
testcase_17 AC 131 ms
53,956 KB
testcase_18 AC 134 ms
53,916 KB
testcase_19 AC 134 ms
53,804 KB
testcase_20 AC 131 ms
54,176 KB
testcase_21 AC 133 ms
53,732 KB
testcase_22 AC 129 ms
54,056 KB
testcase_23 AC 131 ms
54,284 KB
testcase_24 AC 133 ms
54,172 KB
testcase_25 AC 132 ms
54,120 KB
testcase_26 AC 132 ms
54,068 KB
testcase_27 AC 132 ms
54,024 KB
testcase_28 AC 132 ms
53,904 KB
testcase_29 AC 131 ms
54,008 KB
testcase_30 AC 133 ms
54,012 KB
testcase_31 AC 130 ms
54,000 KB
testcase_32 AC 132 ms
54,132 KB
testcase_33 AC 130 ms
53,812 KB
testcase_34 AC 129 ms
53,924 KB
testcase_35 AC 131 ms
53,844 KB
testcase_36 AC 132 ms
54,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Yuki316 {
    public static void main(String[] args) {
        long N;
        int a;
        int b;
        int c;
        try (Scanner sc = new Scanner(System.in)) {
            N = sc.nextLong();
            a = sc.nextInt();
            b = sc.nextInt();
            c = sc.nextInt();
        }

        System.out.println(N / a + N / b + N / c - N / lcm(a, b) - N / lcm(b, c) - N / lcm(c, a) + N / lcm(a, lcm(b, c)));
    }

    private static long gcd(long a, long b) {
        if (b == 0) {
            return a;
        }
        return gcd(b, (a % b));
    }

    private static long lcm(long a, long b) {
        return a * b / gcd(a, b);
    }
}
0