結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー TatsuDXTatsuDX
提出日時 2016-10-16 21:40:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 1,000 ms
コード長 639 bytes
コンパイル時間 3,671 ms
コンパイル使用メモリ 75,020 KB
実行使用メモリ 41,656 KB
最終ジャッジ日時 2024-11-22 12:25:07
合計ジャッジ時間 9,817 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,400 KB
testcase_01 AC 121 ms
39,816 KB
testcase_02 AC 133 ms
41,360 KB
testcase_03 AC 134 ms
40,952 KB
testcase_04 AC 135 ms
41,472 KB
testcase_05 AC 133 ms
41,412 KB
testcase_06 AC 134 ms
41,504 KB
testcase_07 AC 133 ms
41,148 KB
testcase_08 AC 136 ms
41,012 KB
testcase_09 AC 135 ms
41,228 KB
testcase_10 AC 135 ms
41,328 KB
testcase_11 AC 119 ms
40,248 KB
testcase_12 AC 133 ms
41,452 KB
testcase_13 AC 132 ms
41,388 KB
testcase_14 AC 134 ms
41,400 KB
testcase_15 AC 133 ms
41,012 KB
testcase_16 AC 134 ms
41,340 KB
testcase_17 AC 133 ms
41,124 KB
testcase_18 AC 134 ms
41,176 KB
testcase_19 AC 136 ms
41,424 KB
testcase_20 AC 133 ms
41,452 KB
testcase_21 AC 136 ms
41,128 KB
testcase_22 AC 134 ms
41,656 KB
testcase_23 AC 135 ms
41,108 KB
testcase_24 AC 134 ms
41,440 KB
testcase_25 AC 135 ms
41,416 KB
testcase_26 AC 134 ms
41,324 KB
testcase_27 AC 134 ms
41,400 KB
testcase_28 AC 136 ms
41,408 KB
testcase_29 AC 134 ms
41,120 KB
testcase_30 AC 135 ms
41,440 KB
testcase_31 AC 132 ms
41,044 KB
testcase_32 AC 134 ms
41,216 KB
testcase_33 AC 135 ms
41,288 KB
testcase_34 AC 121 ms
39,872 KB
testcase_35 AC 135 ms
41,272 KB
testcase_36 AC 133 ms
41,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static Scanner sc = new Scanner(System.in);

	public static void main(String[] args) {
		long n = sc.nextLong(), a = sc.nextLong(), b = sc.nextLong(), c = sc.nextLong(), cnt = 0;
		cnt += n / a;
		cnt += n / b;
		cnt += n / c;
		cnt -= n / (lcm(a, b));
		cnt -= n / (lcm(a, c));
		cnt -= n / (lcm(b, c));
		cnt += n / (lcm(a, lcm(b, c)));
		System.out.println(cnt);
	}

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

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