結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー 37zigen37zigen
提出日時 2016-05-18 18:28:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 710 bytes
コンパイル時間 2,129 ms
コンパイル使用メモリ 74,220 KB
実行使用メモリ 41,648 KB
最終ジャッジ日時 2024-11-21 12:20:13
合計ジャッジ時間 8,077 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,156 KB
testcase_01 AC 118 ms
41,284 KB
testcase_02 AC 125 ms
40,844 KB
testcase_03 AC 131 ms
40,932 KB
testcase_04 AC 133 ms
41,404 KB
testcase_05 AC 133 ms
41,064 KB
testcase_06 AC 135 ms
41,300 KB
testcase_07 AC 135 ms
41,064 KB
testcase_08 AC 132 ms
41,200 KB
testcase_09 AC 134 ms
41,080 KB
testcase_10 AC 133 ms
40,944 KB
testcase_11 AC 133 ms
41,364 KB
testcase_12 AC 117 ms
41,320 KB
testcase_13 AC 126 ms
41,384 KB
testcase_14 AC 126 ms
41,236 KB
testcase_15 AC 129 ms
41,224 KB
testcase_16 AC 130 ms
41,176 KB
testcase_17 AC 130 ms
41,364 KB
testcase_18 AC 134 ms
41,380 KB
testcase_19 AC 135 ms
41,096 KB
testcase_20 AC 134 ms
41,268 KB
testcase_21 AC 133 ms
41,440 KB
testcase_22 AC 132 ms
41,068 KB
testcase_23 AC 133 ms
41,264 KB
testcase_24 AC 131 ms
41,240 KB
testcase_25 AC 134 ms
41,364 KB
testcase_26 AC 135 ms
41,648 KB
testcase_27 AC 128 ms
41,164 KB
testcase_28 AC 131 ms
41,368 KB
testcase_29 AC 132 ms
40,984 KB
testcase_30 AC 130 ms
41,152 KB
testcase_31 AC 132 ms
41,140 KB
testcase_32 AC 129 ms
41,092 KB
testcase_33 AC 131 ms
41,224 KB
testcase_34 AC 131 ms
40,832 KB
testcase_35 AC 131 ms
40,940 KB
testcase_36 AC 134 ms
41,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	public static void main(String[] args){
		new Main().solve();
	}
	void solve(){
		Scanner sc=new Scanner(System.in);
		long n=sc.nextLong();
		long a=sc.nextLong();
		long b=sc.nextLong();
		long c=sc.nextLong();
		/**
		 * 1<=x<=Nの範囲でa,b,cのいずれかの倍数となるものの個数を数える。
		 * 
		 */
		long ans=n/a+n/b+n/c-n/lcm(a,b)-n/lcm(b,c)-n/lcm(c,a)+n/lcm(lcm(a,b),c);
		System.out.println(ans);
	}
	long lcm(long t1,long t2){
		long a=gcd(t1,t2);
		long tt1=t1/a;
		long tt2=t2/a;
		return tt1*tt2*a;
	}
	long gcd(long t1,long t2){
		if(t1<t2){
			long d=t2;
			t2=t1;
			t1=d;
		}
		if(t2==0)return t1;
		return gcd(t2,t1%t2);
	}
}
0