結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー ぴろずぴろず
提出日時 2015-12-09 03:09:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 1,000 ms
コード長 687 bytes
コンパイル時間 2,749 ms
コンパイル使用メモリ 74,408 KB
実行使用メモリ 54,396 KB
最終ジャッジ日時 2024-11-21 11:28:02
合計ジャッジ時間 9,281 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
53,940 KB
testcase_01 AC 133 ms
54,044 KB
testcase_02 AC 136 ms
53,924 KB
testcase_03 AC 134 ms
53,752 KB
testcase_04 AC 130 ms
54,096 KB
testcase_05 AC 138 ms
53,884 KB
testcase_06 AC 136 ms
54,096 KB
testcase_07 AC 136 ms
54,060 KB
testcase_08 AC 136 ms
53,972 KB
testcase_09 AC 135 ms
54,396 KB
testcase_10 AC 136 ms
54,060 KB
testcase_11 AC 135 ms
54,020 KB
testcase_12 AC 135 ms
54,084 KB
testcase_13 AC 138 ms
54,120 KB
testcase_14 AC 138 ms
54,108 KB
testcase_15 AC 136 ms
54,108 KB
testcase_16 AC 134 ms
54,036 KB
testcase_17 AC 136 ms
54,028 KB
testcase_18 AC 134 ms
54,268 KB
testcase_19 AC 142 ms
54,240 KB
testcase_20 AC 138 ms
54,040 KB
testcase_21 AC 135 ms
53,780 KB
testcase_22 AC 137 ms
54,240 KB
testcase_23 AC 138 ms
54,168 KB
testcase_24 AC 135 ms
53,876 KB
testcase_25 AC 139 ms
54,100 KB
testcase_26 AC 139 ms
53,816 KB
testcase_27 AC 139 ms
54,296 KB
testcase_28 AC 137 ms
54,052 KB
testcase_29 AC 136 ms
54,008 KB
testcase_30 AC 136 ms
53,904 KB
testcase_31 AC 140 ms
54,120 KB
testcase_32 AC 137 ms
54,088 KB
testcase_33 AC 136 ms
54,100 KB
testcase_34 AC 136 ms
54,060 KB
testcase_35 AC 135 ms
53,940 KB
testcase_36 AC 133 ms
54,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no316;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		long[] a = new long[3];
		for(int i=0;i<3;i++) {
			a[i] = sc.nextLong();
		}
		long count = 0;
		for(int i=1;i<8;i++) {
			long lcm = 1;
			for(int j=0;j<3;j++) {
				if ((i>>j&1)>0) {
					lcm = lcm(lcm,a[j]);
				}
			}
			count += (n / lcm) * (Integer.bitCount(i) % 2 == 1 ? 1 : -1); 
		}
		System.out.println(count);
	}

	public static long gcd(long a,long b) {
		while(b!=0) {
			long r = a%b;
			a = b;
			b = r;
		}
		return a;
	}
	public static long lcm(long a,long b) {
		return a / gcd(a,b) * b;
	}


}
0