結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー ほげ太郎ほげ太郎
提出日時 2018-02-26 17:34:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 1,000 ms
コード長 766 bytes
コンパイル時間 2,055 ms
コンパイル使用メモリ 74,504 KB
実行使用メモリ 41,568 KB
最終ジャッジ日時 2024-11-24 07:21:18
合計ジャッジ時間 8,088 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,212 KB
testcase_01 AC 125 ms
41,020 KB
testcase_02 AC 125 ms
41,244 KB
testcase_03 AC 123 ms
41,240 KB
testcase_04 AC 124 ms
41,164 KB
testcase_05 AC 126 ms
41,332 KB
testcase_06 AC 116 ms
40,160 KB
testcase_07 AC 111 ms
41,176 KB
testcase_08 AC 124 ms
40,912 KB
testcase_09 AC 122 ms
41,156 KB
testcase_10 AC 122 ms
41,476 KB
testcase_11 AC 124 ms
41,148 KB
testcase_12 AC 125 ms
41,568 KB
testcase_13 AC 115 ms
41,076 KB
testcase_14 AC 112 ms
39,948 KB
testcase_15 AC 115 ms
39,860 KB
testcase_16 AC 128 ms
41,284 KB
testcase_17 AC 115 ms
39,864 KB
testcase_18 AC 109 ms
41,344 KB
testcase_19 AC 125 ms
40,980 KB
testcase_20 AC 124 ms
41,364 KB
testcase_21 AC 126 ms
41,104 KB
testcase_22 AC 124 ms
41,408 KB
testcase_23 AC 122 ms
41,272 KB
testcase_24 AC 125 ms
41,124 KB
testcase_25 AC 128 ms
41,148 KB
testcase_26 AC 126 ms
40,968 KB
testcase_27 AC 129 ms
41,204 KB
testcase_28 AC 125 ms
41,264 KB
testcase_29 AC 124 ms
41,184 KB
testcase_30 AC 124 ms
41,152 KB
testcase_31 AC 124 ms
41,012 KB
testcase_32 AC 127 ms
41,416 KB
testcase_33 AC 125 ms
41,400 KB
testcase_34 AC 122 ms
41,116 KB
testcase_35 AC 125 ms
41,412 KB
testcase_36 AC 123 ms
41,268 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