結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー mits58mits58
提出日時 2016-07-29 22:54:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 473 bytes
コンパイル時間 2,352 ms
コンパイル使用メモリ 77,428 KB
実行使用メモリ 41,520 KB
最終ジャッジ日時 2024-11-21 12:22:03
合計ジャッジ時間 7,786 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,496 KB
testcase_01 AC 129 ms
41,504 KB
testcase_02 AC 131 ms
41,180 KB
testcase_03 AC 130 ms
41,192 KB
testcase_04 AC 129 ms
41,100 KB
testcase_05 AC 128 ms
41,412 KB
testcase_06 AC 127 ms
41,360 KB
testcase_07 AC 126 ms
41,064 KB
testcase_08 AC 126 ms
41,292 KB
testcase_09 AC 115 ms
41,052 KB
testcase_10 AC 128 ms
41,040 KB
testcase_11 AC 129 ms
41,168 KB
testcase_12 AC 115 ms
40,988 KB
testcase_13 AC 130 ms
41,408 KB
testcase_14 AC 128 ms
41,272 KB
testcase_15 AC 130 ms
41,392 KB
testcase_16 AC 128 ms
41,068 KB
testcase_17 AC 129 ms
41,520 KB
testcase_18 AC 130 ms
41,408 KB
testcase_19 AC 115 ms
41,108 KB
testcase_20 AC 129 ms
41,228 KB
testcase_21 AC 126 ms
41,100 KB
testcase_22 AC 126 ms
41,264 KB
testcase_23 AC 130 ms
41,440 KB
testcase_24 AC 127 ms
41,196 KB
testcase_25 AC 116 ms
41,152 KB
testcase_26 AC 130 ms
41,312 KB
testcase_27 AC 132 ms
41,100 KB
testcase_28 AC 116 ms
40,968 KB
testcase_29 AC 115 ms
41,208 KB
testcase_30 AC 127 ms
41,068 KB
testcase_31 AC 130 ms
41,112 KB
testcase_32 AC 128 ms
41,284 KB
testcase_33 AC 129 ms
41,092 KB
testcase_34 AC 128 ms
41,388 KB
testcase_35 AC 115 ms
41,044 KB
testcase_36 AC 129 ms
41,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	static long gcd(long a,long b){
		if(a%b==0) return b;
		return gcd(b,a%b);
	}
	static long lcm(long a,long b){
		return a/gcd(a,b)*b;
	}
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		while(sc.hasNext()){
			long n=sc.nextLong();
			long a=sc.nextLong(),b=sc.nextLong(),c=sc.nextLong();
			long ans=n/a+n/b+n/c-n/lcm(a,b)-n/lcm(b,c)-n/lcm(a,c)+n/lcm(a,lcm(b,c));
			System.out.println(ans);
		}
	}
}
0