結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー samplelpmassamplelpmas
提出日時 2017-05-03 20:00:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 735 bytes
コンパイル時間 2,174 ms
コンパイル使用メモリ 74,880 KB
実行使用メモリ 41,804 KB
最終ジャッジ日時 2024-09-14 07:09:12
合計ジャッジ時間 8,194 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,248 KB
testcase_01 AC 123 ms
41,116 KB
testcase_02 WA -
testcase_03 AC 135 ms
41,208 KB
testcase_04 AC 135 ms
41,168 KB
testcase_05 AC 134 ms
41,168 KB
testcase_06 AC 132 ms
41,100 KB
testcase_07 AC 132 ms
41,364 KB
testcase_08 AC 134 ms
41,648 KB
testcase_09 AC 133 ms
41,156 KB
testcase_10 AC 136 ms
41,160 KB
testcase_11 AC 134 ms
41,276 KB
testcase_12 AC 133 ms
41,144 KB
testcase_13 AC 131 ms
41,620 KB
testcase_14 AC 132 ms
41,288 KB
testcase_15 AC 132 ms
41,156 KB
testcase_16 AC 130 ms
41,360 KB
testcase_17 AC 131 ms
41,292 KB
testcase_18 AC 131 ms
41,288 KB
testcase_19 AC 133 ms
41,544 KB
testcase_20 AC 133 ms
41,156 KB
testcase_21 AC 131 ms
41,264 KB
testcase_22 AC 132 ms
41,668 KB
testcase_23 AC 133 ms
41,444 KB
testcase_24 AC 134 ms
41,804 KB
testcase_25 AC 133 ms
41,508 KB
testcase_26 AC 131 ms
41,128 KB
testcase_27 AC 132 ms
41,284 KB
testcase_28 AC 132 ms
41,252 KB
testcase_29 AC 123 ms
40,136 KB
testcase_30 AC 134 ms
41,096 KB
testcase_31 AC 133 ms
41,232 KB
testcase_32 AC 133 ms
41,204 KB
testcase_33 AC 133 ms
41,404 KB
testcase_34 AC 132 ms
41,200 KB
testcase_35 AC 131 ms
41,404 KB
testcase_36 AC 130 ms
41,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int N = sc.nextInt();

        int a = sc.nextInt();
        int b = sc.nextInt();
        int c = sc.nextInt();

        long lcmAB = lcm(a, b);
        long lcmBC = lcm(b, c);
        long lcmCA = lcm(c, a);

        long lcmABC = lcm(lcmAB, c);

        long answer = (N / a) + (N / b) + (N / c) + (N / lcmABC) - (N / lcmAB) - (N / lcmBC) - (N / lcmCA);

        System.out.println(answer);

    }

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

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

}
0