結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー tentententen
提出日時 2022-10-13 09:20:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 1,000 ms
コード長 1,516 bytes
コンパイル時間 2,108 ms
コンパイル使用メモリ 77,060 KB
実行使用メモリ 50,560 KB
最終ジャッジ日時 2024-06-26 11:52:24
合計ジャッジ時間 5,467 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,560 KB
testcase_01 AC 52 ms
50,436 KB
testcase_02 AC 51 ms
50,004 KB
testcase_03 AC 54 ms
50,300 KB
testcase_04 AC 53 ms
50,380 KB
testcase_05 AC 52 ms
50,048 KB
testcase_06 AC 52 ms
50,456 KB
testcase_07 AC 50 ms
49,880 KB
testcase_08 AC 52 ms
50,152 KB
testcase_09 AC 51 ms
50,164 KB
testcase_10 AC 52 ms
49,956 KB
testcase_11 AC 55 ms
50,040 KB
testcase_12 AC 52 ms
50,276 KB
testcase_13 AC 53 ms
49,964 KB
testcase_14 AC 52 ms
50,400 KB
testcase_15 AC 52 ms
50,140 KB
testcase_16 AC 53 ms
50,412 KB
testcase_17 AC 52 ms
50,272 KB
testcase_18 AC 52 ms
50,440 KB
testcase_19 AC 53 ms
50,300 KB
testcase_20 AC 51 ms
50,360 KB
testcase_21 AC 51 ms
50,440 KB
testcase_22 AC 50 ms
50,292 KB
testcase_23 AC 51 ms
50,464 KB
testcase_24 AC 53 ms
50,300 KB
testcase_25 AC 50 ms
50,372 KB
testcase_26 AC 53 ms
50,152 KB
testcase_27 AC 52 ms
50,144 KB
testcase_28 AC 53 ms
50,340 KB
testcase_29 AC 53 ms
50,260 KB
testcase_30 AC 52 ms
49,908 KB
testcase_31 AC 52 ms
50,220 KB
testcase_32 AC 51 ms
50,012 KB
testcase_33 AC 52 ms
50,276 KB
testcase_34 AC 51 ms
50,352 KB
testcase_35 AC 52 ms
50,148 KB
testcase_36 AC 52 ms
50,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        long a = sc.nextInt();
        long b = sc.nextInt();
        long c = sc.nextInt();
        long ab = getLCM(a, b);
        long bc = getLCM(b, c);
        long ca = getLCM(c, a);
        long abc = getLCM(ab, c);
        long ans = n / a + n / b + n / c - n / ab - n / bc - n / ca + n / abc;
        System.out.println(ans);
    }
    
    static long getLCM(long x, long y) {
        return x / getGCD(x, y) * y;
    }
    
    static long getGCD(long x, long y) {
        if (y == 0) {
            return x;
        } else {
            return getGCD(y, x % y);
        }
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0