結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー ほげ太郎ほげ太郎
提出日時 2018-02-26 17:34:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 766 bytes
コンパイル時間 1,777 ms
コンパイル使用メモリ 74,864 KB
実行使用メモリ 54,380 KB
最終ジャッジ日時 2024-05-03 08:44:00
合計ジャッジ時間 6,968 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
54,328 KB
testcase_01 AC 99 ms
52,684 KB
testcase_02 AC 114 ms
54,084 KB
testcase_03 AC 105 ms
52,808 KB
testcase_04 AC 115 ms
54,192 KB
testcase_05 AC 103 ms
52,808 KB
testcase_06 AC 112 ms
52,936 KB
testcase_07 AC 107 ms
52,992 KB
testcase_08 AC 98 ms
52,860 KB
testcase_09 AC 105 ms
53,176 KB
testcase_10 AC 104 ms
53,024 KB
testcase_11 AC 113 ms
54,040 KB
testcase_12 AC 112 ms
54,120 KB
testcase_13 AC 116 ms
53,936 KB
testcase_14 AC 112 ms
54,068 KB
testcase_15 AC 113 ms
53,916 KB
testcase_16 AC 121 ms
54,064 KB
testcase_17 AC 116 ms
54,056 KB
testcase_18 AC 111 ms
54,232 KB
testcase_19 AC 113 ms
53,984 KB
testcase_20 AC 98 ms
52,736 KB
testcase_21 AC 102 ms
53,032 KB
testcase_22 AC 101 ms
52,824 KB
testcase_23 AC 118 ms
54,216 KB
testcase_24 AC 123 ms
54,176 KB
testcase_25 AC 111 ms
53,024 KB
testcase_26 AC 124 ms
54,076 KB
testcase_27 AC 114 ms
53,240 KB
testcase_28 AC 114 ms
54,380 KB
testcase_29 AC 116 ms
53,968 KB
testcase_30 AC 127 ms
54,016 KB
testcase_31 AC 127 ms
54,244 KB
testcase_32 AC 106 ms
52,940 KB
testcase_33 AC 109 ms
53,324 KB
testcase_34 AC 107 ms
52,952 KB
testcase_35 AC 109 ms
52,908 KB
testcase_36 AC 105 ms
53,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] p) {
        Scanner q = new Scanner(System.in);
        long n = q.nextLong();
        int a = q.nextInt();
        int b = q.nextInt();
        int c = q.nextInt();

        long ab = lcm(a, b);
        long bc = lcm(b, c);
        long ca = lcm(c, a);
        long abc = lcm(ab, c);

        System.out.println((n / a + n / b + n / c) - (n / ab + n / bc + n / ca) + n / abc);
    }

    private static long lcm(long a, long b) {
        long min = Math.min(a, b);
        long last = 0;
        for (long r = Math.max(a, b); r != 0;) {
            last = r;
            r = Math.abs(min - r);
            min = Math.min(min, last);
        }
        return a * b / last;
    }
}
0