結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー kou6839kou6839
提出日時 2015-12-09 16:01:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 461 bytes
コンパイル時間 2,084 ms
コンパイル使用メモリ 74,700 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-11-21 11:34:38
合計ジャッジ時間 8,336 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,052 KB
testcase_01 AC 134 ms
53,960 KB
testcase_02 AC 135 ms
53,800 KB
testcase_03 AC 134 ms
54,068 KB
testcase_04 AC 134 ms
54,012 KB
testcase_05 AC 137 ms
54,112 KB
testcase_06 AC 134 ms
54,052 KB
testcase_07 AC 135 ms
54,272 KB
testcase_08 AC 137 ms
54,128 KB
testcase_09 AC 136 ms
54,344 KB
testcase_10 AC 134 ms
54,012 KB
testcase_11 AC 133 ms
54,284 KB
testcase_12 AC 134 ms
54,036 KB
testcase_13 AC 136 ms
54,072 KB
testcase_14 AC 135 ms
53,964 KB
testcase_15 AC 137 ms
54,048 KB
testcase_16 AC 135 ms
54,100 KB
testcase_17 AC 135 ms
54,120 KB
testcase_18 AC 131 ms
54,032 KB
testcase_19 AC 133 ms
53,880 KB
testcase_20 AC 135 ms
53,984 KB
testcase_21 AC 133 ms
53,948 KB
testcase_22 AC 133 ms
54,048 KB
testcase_23 AC 133 ms
54,040 KB
testcase_24 AC 132 ms
54,244 KB
testcase_25 AC 134 ms
53,836 KB
testcase_26 AC 134 ms
54,152 KB
testcase_27 AC 132 ms
54,044 KB
testcase_28 AC 134 ms
54,076 KB
testcase_29 AC 133 ms
54,036 KB
testcase_30 AC 132 ms
53,940 KB
testcase_31 AC 131 ms
54,160 KB
testcase_32 AC 134 ms
54,172 KB
testcase_33 AC 135 ms
54,116 KB
testcase_34 AC 135 ms
54,020 KB
testcase_35 AC 136 ms
54,068 KB
testcase_36 AC 134 ms
54,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static long gcd(long a,long b){
		return b == 0 ? a : gcd(b, a%b);
	}
	static long lcm(long a, long b){
		return a*b/gcd(a, b);
	}
	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();
		System.out.println(n/a+n/b+n/c-n/lcm(a, b)-n/lcm(b, c)-n/lcm(c, a)+n/lcm(a, lcm(b, c)));
	}
}
0