結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-04 17:10:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 1,000 ms
コード長 964 bytes
コンパイル時間 3,343 ms
コンパイル使用メモリ 74,948 KB
実行使用メモリ 41,532 KB
最終ジャッジ日時 2024-11-21 12:20:38
合計ジャッジ時間 9,040 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,200 KB
testcase_01 AC 130 ms
41,388 KB
testcase_02 AC 114 ms
41,264 KB
testcase_03 AC 122 ms
41,196 KB
testcase_04 AC 127 ms
41,264 KB
testcase_05 AC 122 ms
39,872 KB
testcase_06 AC 128 ms
40,976 KB
testcase_07 AC 130 ms
41,196 KB
testcase_08 AC 134 ms
41,240 KB
testcase_09 AC 128 ms
41,072 KB
testcase_10 AC 131 ms
41,064 KB
testcase_11 AC 125 ms
40,000 KB
testcase_12 AC 122 ms
41,272 KB
testcase_13 AC 128 ms
41,456 KB
testcase_14 AC 127 ms
41,356 KB
testcase_15 AC 129 ms
41,100 KB
testcase_16 AC 126 ms
40,940 KB
testcase_17 AC 122 ms
41,364 KB
testcase_18 AC 126 ms
41,396 KB
testcase_19 AC 125 ms
41,100 KB
testcase_20 AC 121 ms
41,108 KB
testcase_21 AC 108 ms
41,032 KB
testcase_22 AC 127 ms
41,240 KB
testcase_23 AC 129 ms
41,532 KB
testcase_24 AC 131 ms
41,104 KB
testcase_25 AC 133 ms
41,496 KB
testcase_26 AC 127 ms
41,100 KB
testcase_27 AC 113 ms
41,100 KB
testcase_28 AC 112 ms
39,948 KB
testcase_29 AC 116 ms
41,468 KB
testcase_30 AC 124 ms
41,200 KB
testcase_31 AC 113 ms
40,940 KB
testcase_32 AC 126 ms
41,248 KB
testcase_33 AC 119 ms
41,408 KB
testcase_34 AC 125 ms
41,344 KB
testcase_35 AC 118 ms
41,184 KB
testcase_36 AC 124 ms
41,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise58{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    long n = sc.nextInt();

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

    long count = 0;

    count += n / a;
    count += n / b;
    count += n / c;

    long lcmAB = getLcm(b, a);
    count -= n / lcmAB;

    long lcmBC = getLcm(c, b);
    count -= n / lcmBC;

    long lcmAC = getLcm(c, a);
    count -= n / lcmAC;

    long lcmAll = getLcm(lcmBC, a);
    count += n / lcmAll;

    System.out.println(count);
    
  }
  private static long ea(long biggerNum, long smallerNum){
    long mod = biggerNum % smallerNum;
    if (mod == 0){
      return smallerNum;
    } else {
      return ea(smallerNum, mod);
    }
  }
  private static long getLcm(long biggerNum, long smallerNum){
    long gcm = ea(biggerNum, smallerNum);
    long lcm = biggerNum * smallerNum / gcm;
    return lcm;
  }
}
0