結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,376 KB
testcase_01 AC 111 ms
41,432 KB
testcase_02 AC 109 ms
41,196 KB
testcase_03 AC 108 ms
41,064 KB
testcase_04 AC 111 ms
40,964 KB
testcase_05 AC 113 ms
41,140 KB
testcase_06 AC 109 ms
41,356 KB
testcase_07 AC 110 ms
41,080 KB
testcase_08 AC 97 ms
40,368 KB
testcase_09 AC 109 ms
41,412 KB
testcase_10 AC 113 ms
41,048 KB
testcase_11 AC 95 ms
39,748 KB
testcase_12 AC 100 ms
40,340 KB
testcase_13 AC 98 ms
40,040 KB
testcase_14 AC 94 ms
39,868 KB
testcase_15 AC 100 ms
40,040 KB
testcase_16 AC 105 ms
41,364 KB
testcase_17 AC 107 ms
41,060 KB
testcase_18 AC 100 ms
40,044 KB
testcase_19 AC 110 ms
41,812 KB
testcase_20 AC 97 ms
40,272 KB
testcase_21 AC 102 ms
40,080 KB
testcase_22 AC 114 ms
41,276 KB
testcase_23 AC 104 ms
40,308 KB
testcase_24 AC 99 ms
39,732 KB
testcase_25 AC 99 ms
40,392 KB
testcase_26 AC 112 ms
41,448 KB
testcase_27 AC 113 ms
41,300 KB
testcase_28 AC 110 ms
41,248 KB
testcase_29 AC 100 ms
40,044 KB
testcase_30 AC 111 ms
41,100 KB
testcase_31 AC 118 ms
41,836 KB
testcase_32 AC 111 ms
40,964 KB
testcase_33 AC 99 ms
40,272 KB
testcase_34 AC 108 ms
41,468 KB
testcase_35 AC 109 ms
41,352 KB
testcase_36 AC 108 ms
41,192 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