結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー 37zigen37zigen
提出日時 2016-05-18 18:24:58
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 702 bytes
コンパイル時間 3,683 ms
コンパイル使用メモリ 74,412 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-10-06 05:33:48
合計ジャッジ時間 7,901 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
53,992 KB
testcase_01 AC 121 ms
54,132 KB
testcase_02 WA -
testcase_03 AC 123 ms
53,768 KB
testcase_04 AC 116 ms
53,740 KB
testcase_05 AC 117 ms
53,896 KB
testcase_06 AC 119 ms
53,864 KB
testcase_07 AC 124 ms
53,976 KB
testcase_08 AC 118 ms
53,956 KB
testcase_09 AC 127 ms
53,872 KB
testcase_10 AC 122 ms
53,984 KB
testcase_11 AC 120 ms
54,088 KB
testcase_12 AC 121 ms
54,028 KB
testcase_13 AC 119 ms
53,868 KB
testcase_14 AC 118 ms
54,088 KB
testcase_15 AC 124 ms
54,244 KB
testcase_16 AC 123 ms
53,700 KB
testcase_17 AC 131 ms
54,220 KB
testcase_18 AC 125 ms
54,096 KB
testcase_19 AC 127 ms
54,284 KB
testcase_20 AC 120 ms
53,860 KB
testcase_21 AC 130 ms
53,876 KB
testcase_22 AC 109 ms
52,832 KB
testcase_23 AC 119 ms
54,096 KB
testcase_24 AC 117 ms
53,880 KB
testcase_25 AC 125 ms
53,928 KB
testcase_26 AC 122 ms
54,000 KB
testcase_27 AC 114 ms
54,212 KB
testcase_28 AC 117 ms
54,156 KB
testcase_29 AC 116 ms
54,048 KB
testcase_30 AC 120 ms
54,120 KB
testcase_31 AC 125 ms
53,800 KB
testcase_32 AC 122 ms
53,740 KB
testcase_33 AC 121 ms
53,944 KB
testcase_34 AC 118 ms
54,280 KB
testcase_35 AC 122 ms
53,964 KB
testcase_36 AC 122 ms
53,872 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);
		int n=sc.nextInt();
		int a=sc.nextInt();
		int b=sc.nextInt();
		int c=sc.nextInt();
		/**
		 * 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