結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー kou6839kou6839
提出日時 2015-12-09 15:57:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 453 bytes
コンパイル時間 2,047 ms
コンパイル使用メモリ 74,104 KB
実行使用メモリ 54,084 KB
最終ジャッジ日時 2024-09-15 05:51:43
合計ジャッジ時間 8,529 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
53,800 KB
testcase_01 AC 133 ms
53,196 KB
testcase_02 WA -
testcase_03 AC 133 ms
53,776 KB
testcase_04 AC 130 ms
53,488 KB
testcase_05 AC 134 ms
53,768 KB
testcase_06 AC 124 ms
52,212 KB
testcase_07 AC 135 ms
53,964 KB
testcase_08 AC 132 ms
53,376 KB
testcase_09 AC 133 ms
53,912 KB
testcase_10 AC 131 ms
53,424 KB
testcase_11 AC 133 ms
53,240 KB
testcase_12 AC 132 ms
53,756 KB
testcase_13 AC 132 ms
53,676 KB
testcase_14 AC 132 ms
53,780 KB
testcase_15 AC 130 ms
53,488 KB
testcase_16 AC 132 ms
53,916 KB
testcase_17 AC 133 ms
53,728 KB
testcase_18 AC 134 ms
53,504 KB
testcase_19 AC 122 ms
52,952 KB
testcase_20 AC 134 ms
54,084 KB
testcase_21 AC 135 ms
53,852 KB
testcase_22 AC 132 ms
53,612 KB
testcase_23 AC 134 ms
53,764 KB
testcase_24 AC 133 ms
53,468 KB
testcase_25 AC 133 ms
53,900 KB
testcase_26 AC 133 ms
53,668 KB
testcase_27 AC 119 ms
52,420 KB
testcase_28 AC 132 ms
53,612 KB
testcase_29 AC 131 ms
53,988 KB
testcase_30 AC 131 ms
53,764 KB
testcase_31 AC 133 ms
53,536 KB
testcase_32 AC 134 ms
53,844 KB
testcase_33 AC 134 ms
53,624 KB
testcase_34 AC 132 ms
53,740 KB
testcase_35 AC 134 ms
53,500 KB
testcase_36 AC 132 ms
53,632 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);
		
		int n = sc.nextInt();
		int a = sc.nextInt();
		int b = sc.nextInt();
		int c = sc.nextInt();
		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