結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー rf141rf141
提出日時 2015-12-19 16:05:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 1,000 ms
コード長 493 bytes
コンパイル時間 2,485 ms
コンパイル使用メモリ 74,544 KB
実行使用メモリ 54,544 KB
最終ジャッジ日時 2024-11-21 12:11:43
合計ジャッジ時間 8,277 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,092 KB
testcase_01 AC 135 ms
53,976 KB
testcase_02 AC 136 ms
54,068 KB
testcase_03 AC 135 ms
54,100 KB
testcase_04 AC 135 ms
54,240 KB
testcase_05 AC 135 ms
54,180 KB
testcase_06 AC 135 ms
54,332 KB
testcase_07 AC 136 ms
54,056 KB
testcase_08 AC 135 ms
54,096 KB
testcase_09 AC 137 ms
54,164 KB
testcase_10 AC 135 ms
54,152 KB
testcase_11 AC 133 ms
54,012 KB
testcase_12 AC 135 ms
54,260 KB
testcase_13 AC 134 ms
54,064 KB
testcase_14 AC 134 ms
54,432 KB
testcase_15 AC 134 ms
54,328 KB
testcase_16 AC 132 ms
54,328 KB
testcase_17 AC 117 ms
52,792 KB
testcase_18 AC 136 ms
54,012 KB
testcase_19 AC 134 ms
54,064 KB
testcase_20 AC 135 ms
54,112 KB
testcase_21 AC 141 ms
54,216 KB
testcase_22 AC 134 ms
54,208 KB
testcase_23 AC 133 ms
54,372 KB
testcase_24 AC 133 ms
54,244 KB
testcase_25 AC 136 ms
53,972 KB
testcase_26 AC 138 ms
54,544 KB
testcase_27 AC 135 ms
53,864 KB
testcase_28 AC 135 ms
54,528 KB
testcase_29 AC 135 ms
54,252 KB
testcase_30 AC 135 ms
54,196 KB
testcase_31 AC 134 ms
54,068 KB
testcase_32 AC 136 ms
53,844 KB
testcase_33 AC 136 ms
54,416 KB
testcase_34 AC 135 ms
54,304 KB
testcase_35 AC 138 ms
53,980 KB
testcase_36 AC 136 ms
54,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	public static void main(String... args){
		Scanner scan = new Scanner(System.in);
		long n = scan.nextLong();
		int a = scan.nextInt();
		int b = scan.nextInt();
		int c = scan.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)));
	}

	public static long gcd(long a,long b){
		if(b == 0){
			return a;
		}
		return gcd(b,a%b);
	}

	public static long lcm(long a,long b){
		return a*b/gcd(a,b);
	}
}
0