結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー tentententen
提出日時 2022-10-13 09:20:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 43 ms / 1,000 ms
コード長 1,516 bytes
コンパイル時間 1,992 ms
コンパイル使用メモリ 74,048 KB
実行使用メモリ 49,664 KB
最終ジャッジ日時 2023-09-08 18:57:34
合計ジャッジ時間 5,069 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
49,460 KB
testcase_01 AC 42 ms
49,340 KB
testcase_02 AC 43 ms
49,596 KB
testcase_03 AC 42 ms
49,488 KB
testcase_04 AC 42 ms
49,476 KB
testcase_05 AC 42 ms
49,288 KB
testcase_06 AC 41 ms
49,288 KB
testcase_07 AC 42 ms
49,608 KB
testcase_08 AC 41 ms
49,340 KB
testcase_09 AC 42 ms
49,396 KB
testcase_10 AC 41 ms
49,500 KB
testcase_11 AC 42 ms
49,544 KB
testcase_12 AC 41 ms
49,212 KB
testcase_13 AC 42 ms
49,664 KB
testcase_14 AC 41 ms
49,340 KB
testcase_15 AC 41 ms
49,336 KB
testcase_16 AC 41 ms
49,376 KB
testcase_17 AC 42 ms
49,228 KB
testcase_18 AC 42 ms
49,316 KB
testcase_19 AC 41 ms
49,448 KB
testcase_20 AC 41 ms
49,344 KB
testcase_21 AC 41 ms
49,332 KB
testcase_22 AC 41 ms
49,312 KB
testcase_23 AC 41 ms
49,228 KB
testcase_24 AC 42 ms
49,392 KB
testcase_25 AC 42 ms
49,552 KB
testcase_26 AC 43 ms
49,332 KB
testcase_27 AC 42 ms
49,544 KB
testcase_28 AC 41 ms
49,380 KB
testcase_29 AC 41 ms
49,332 KB
testcase_30 AC 42 ms
49,424 KB
testcase_31 AC 43 ms
49,432 KB
testcase_32 AC 42 ms
49,596 KB
testcase_33 AC 42 ms
49,208 KB
testcase_34 AC 42 ms
49,536 KB
testcase_35 AC 42 ms
49,332 KB
testcase_36 AC 42 ms
49,280 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