結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー ほげ太郎ほげ太郎
提出日時 2018-02-26 17:28:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 756 bytes
コンパイル時間 2,078 ms
コンパイル使用メモリ 73,936 KB
実行使用メモリ 54,392 KB
最終ジャッジ日時 2024-05-03 08:33:51
合計ジャッジ時間 7,124 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
52,904 KB
testcase_01 AC 108 ms
54,076 KB
testcase_02 AC 109 ms
53,816 KB
testcase_03 AC 109 ms
53,952 KB
testcase_04 AC 110 ms
53,924 KB
testcase_05 AC 100 ms
53,044 KB
testcase_06 AC 115 ms
54,280 KB
testcase_07 AC 123 ms
54,040 KB
testcase_08 AC 105 ms
53,056 KB
testcase_09 AC 110 ms
53,932 KB
testcase_10 AC 113 ms
53,972 KB
testcase_11 AC 111 ms
53,924 KB
testcase_12 AC 110 ms
53,956 KB
testcase_13 AC 113 ms
53,848 KB
testcase_14 AC 112 ms
53,964 KB
testcase_15 AC 122 ms
53,960 KB
testcase_16 AC 112 ms
53,728 KB
testcase_17 AC 112 ms
54,072 KB
testcase_18 AC 136 ms
53,964 KB
testcase_19 AC 113 ms
54,248 KB
testcase_20 AC 115 ms
54,200 KB
testcase_21 WA -
testcase_22 AC 119 ms
54,212 KB
testcase_23 AC 109 ms
53,448 KB
testcase_24 AC 117 ms
53,892 KB
testcase_25 WA -
testcase_26 AC 109 ms
54,280 KB
testcase_27 AC 113 ms
53,976 KB
testcase_28 AC 112 ms
53,920 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 110 ms
53,872 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