結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-17 02:36:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 1,000 ms
コード長 696 bytes
コンパイル時間 1,824 ms
コンパイル使用メモリ 74,684 KB
実行使用メモリ 41,344 KB
最終ジャッジ日時 2024-11-26 02:43:12
合計ジャッジ時間 7,037 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,184 KB
testcase_01 AC 114 ms
39,880 KB
testcase_02 AC 105 ms
39,892 KB
testcase_03 AC 103 ms
40,048 KB
testcase_04 AC 112 ms
40,920 KB
testcase_05 AC 103 ms
40,168 KB
testcase_06 AC 116 ms
41,344 KB
testcase_07 AC 114 ms
41,124 KB
testcase_08 AC 99 ms
39,892 KB
testcase_09 AC 113 ms
41,192 KB
testcase_10 AC 116 ms
41,208 KB
testcase_11 AC 116 ms
41,004 KB
testcase_12 AC 114 ms
41,184 KB
testcase_13 AC 112 ms
40,292 KB
testcase_14 AC 106 ms
39,744 KB
testcase_15 AC 113 ms
41,044 KB
testcase_16 AC 117 ms
41,152 KB
testcase_17 AC 117 ms
41,344 KB
testcase_18 AC 107 ms
40,152 KB
testcase_19 AC 114 ms
40,244 KB
testcase_20 AC 116 ms
41,072 KB
testcase_21 AC 110 ms
41,160 KB
testcase_22 AC 118 ms
41,284 KB
testcase_23 AC 103 ms
40,048 KB
testcase_24 AC 111 ms
40,904 KB
testcase_25 AC 104 ms
40,136 KB
testcase_26 AC 117 ms
41,120 KB
testcase_27 AC 116 ms
41,236 KB
testcase_28 AC 107 ms
40,248 KB
testcase_29 AC 113 ms
39,876 KB
testcase_30 AC 100 ms
39,912 KB
testcase_31 AC 115 ms
41,140 KB
testcase_32 AC 116 ms
41,216 KB
testcase_33 AC 102 ms
39,792 KB
testcase_34 AC 113 ms
41,300 KB
testcase_35 AC 104 ms
39,952 KB
testcase_36 AC 115 ms
41,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    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 ablcm = a*b/gcd(a,b);
        long bclcm = b*c/gcd(b,c);
        long calcm = c*a/gcd(c,a);
        long ALLlcm = ablcm*c/gcd(ablcm,c);
        
        long num=N/a+N/b+N/c-N/ablcm-N/bclcm-N/calcm+N/ALLlcm;
        System.out.println(num);
    }
    static long gcd(long x, long y){
        while(true){
            long t=x%y;
            x=y;
            y=t;
            if(t==0){break;}
        }
        return x;
    }
}
0