結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
40,984 KB
testcase_01 AC 122 ms
39,860 KB
testcase_02 AC 132 ms
40,984 KB
testcase_03 AC 112 ms
40,988 KB
testcase_04 AC 121 ms
41,076 KB
testcase_05 AC 126 ms
41,280 KB
testcase_06 AC 121 ms
39,944 KB
testcase_07 AC 130 ms
41,284 KB
testcase_08 AC 124 ms
41,200 KB
testcase_09 AC 124 ms
41,128 KB
testcase_10 AC 115 ms
40,908 KB
testcase_11 AC 125 ms
41,032 KB
testcase_12 AC 125 ms
40,960 KB
testcase_13 AC 113 ms
41,080 KB
testcase_14 AC 120 ms
39,840 KB
testcase_15 AC 126 ms
40,984 KB
testcase_16 AC 124 ms
41,252 KB
testcase_17 AC 126 ms
41,012 KB
testcase_18 AC 126 ms
41,476 KB
testcase_19 AC 124 ms
41,264 KB
testcase_20 AC 126 ms
41,368 KB
testcase_21 WA -
testcase_22 AC 125 ms
41,532 KB
testcase_23 AC 124 ms
41,412 KB
testcase_24 AC 133 ms
41,320 KB
testcase_25 WA -
testcase_26 AC 125 ms
41,076 KB
testcase_27 AC 127 ms
41,076 KB
testcase_28 AC 133 ms
41,184 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 125 ms
41,300 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

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();

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

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

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