結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー takeya_okinotakeya_okino
提出日時 2019-09-07 01:34:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 1,000 ms
コード長 860 bytes
コンパイル時間 2,923 ms
コンパイル使用メモリ 76,592 KB
実行使用メモリ 54,256 KB
最終ジャッジ日時 2024-06-25 00:34:23
合計ジャッジ時間 7,612 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
53,080 KB
testcase_01 AC 113 ms
52,712 KB
testcase_02 AC 120 ms
53,800 KB
testcase_03 AC 123 ms
53,848 KB
testcase_04 AC 125 ms
54,088 KB
testcase_05 AC 124 ms
54,140 KB
testcase_06 AC 109 ms
52,596 KB
testcase_07 AC 121 ms
53,904 KB
testcase_08 AC 113 ms
52,544 KB
testcase_09 AC 122 ms
53,800 KB
testcase_10 AC 123 ms
54,060 KB
testcase_11 AC 126 ms
53,992 KB
testcase_12 AC 121 ms
53,932 KB
testcase_13 AC 121 ms
54,100 KB
testcase_14 AC 122 ms
53,968 KB
testcase_15 AC 123 ms
54,140 KB
testcase_16 AC 122 ms
53,868 KB
testcase_17 AC 111 ms
53,100 KB
testcase_18 AC 122 ms
54,056 KB
testcase_19 AC 125 ms
54,028 KB
testcase_20 AC 126 ms
53,944 KB
testcase_21 AC 119 ms
53,680 KB
testcase_22 AC 122 ms
53,872 KB
testcase_23 AC 122 ms
53,992 KB
testcase_24 AC 128 ms
54,204 KB
testcase_25 AC 114 ms
53,016 KB
testcase_26 AC 123 ms
54,144 KB
testcase_27 AC 124 ms
54,256 KB
testcase_28 AC 122 ms
53,960 KB
testcase_29 AC 114 ms
53,032 KB
testcase_30 AC 124 ms
54,160 KB
testcase_31 AC 124 ms
53,936 KB
testcase_32 AC 123 ms
53,912 KB
testcase_33 AC 125 ms
54,232 KB
testcase_34 AC 126 ms
53,960 KB
testcase_35 AC 125 ms
54,128 KB
testcase_36 AC 122 ms
53,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    long n = sc.nextLong();
    long a = sc.nextLong();
    long b = sc.nextLong();
    long c = sc.nextLong();
    long k1 = n / a;
    long k2 = n / b;
    long k3 = n / c;
    long g1 = gcd(a, b);
    long g2 = gcd(a, c);
    long g3 = gcd(b, c);
    long g4 = gcd(a, g3);
    long l1 = g1 * (a / g1) * (b / g1);
    long l2 = g2 * (a / g2) * (c / g2);
    long l3 = g3 * (b / g3) * (c / g3);
    long g5 = gcd(l1, c);
    long l4 = g5 * (l1 / g5) * (c / g5);
    long h1 = n / l1;
    long h2 = n / l2;
    long h3 = n / l3;
    long h4 = n / l4;
    long ans = k1 + k2 + k3 - h1 - h2 - h3 + h4;
    System.out.println(ans);
  }

  public static long gcd(long a, long b) {
    if(b == 0) return a;
    return gcd(b, (a % b));
  }
}
0