結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー c_r_5c_r_5
提出日時 2018-10-26 16:13:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 597 bytes
コンパイル時間 2,611 ms
コンパイル使用メモリ 74,736 KB
実行使用メモリ 41,460 KB
最終ジャッジ日時 2024-04-29 21:52:37
合計ジャッジ時間 7,589 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,088 KB
testcase_01 AC 123 ms
41,264 KB
testcase_02 AC 121 ms
40,900 KB
testcase_03 AC 122 ms
41,016 KB
testcase_04 AC 121 ms
41,212 KB
testcase_05 AC 113 ms
40,748 KB
testcase_06 AC 109 ms
39,880 KB
testcase_07 AC 118 ms
40,944 KB
testcase_08 AC 127 ms
41,176 KB
testcase_09 AC 126 ms
41,272 KB
testcase_10 AC 125 ms
40,864 KB
testcase_11 AC 110 ms
40,164 KB
testcase_12 AC 123 ms
41,200 KB
testcase_13 AC 110 ms
39,980 KB
testcase_14 AC 122 ms
41,060 KB
testcase_15 AC 122 ms
41,460 KB
testcase_16 AC 123 ms
41,368 KB
testcase_17 AC 123 ms
41,268 KB
testcase_18 AC 125 ms
40,936 KB
testcase_19 AC 125 ms
41,188 KB
testcase_20 AC 124 ms
41,212 KB
testcase_21 AC 121 ms
41,028 KB
testcase_22 AC 122 ms
41,012 KB
testcase_23 AC 125 ms
41,040 KB
testcase_24 AC 108 ms
40,016 KB
testcase_25 AC 121 ms
40,852 KB
testcase_26 AC 121 ms
41,188 KB
testcase_27 AC 121 ms
41,156 KB
testcase_28 AC 108 ms
39,856 KB
testcase_29 AC 118 ms
40,896 KB
testcase_30 AC 121 ms
41,160 KB
testcase_31 AC 109 ms
40,184 KB
testcase_32 AC 120 ms
41,188 KB
testcase_33 AC 121 ms
41,240 KB
testcase_34 AC 107 ms
39,856 KB
testcase_35 AC 122 ms
41,332 KB
testcase_36 AC 120 ms
40,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
	static long gcd(long a, long b) {
		if(b == 0) return a;
		return gcd(b, a%b);
	}
	static long lcm(long a, long b) {
		long g = gcd(a, b);
		return a / g * b;
	}
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long n = Long.parseLong(sc.next());
		long a = Long.parseLong(sc.next());
		long b = Long.parseLong(sc.next());
		long c = Long.parseLong(sc.next());
		long d = lcm(a, b);
		long e = lcm(b, c);
		long f = lcm(c, a);
		long g = lcm(d, c);
		System.out.println(n/a + n/b + n/c + n/g - n/d - n/e - n/f);
	}
}
0