結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー spaciaspacia
提出日時 2016-01-14 22:42:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 762 bytes
コンパイル時間 2,369 ms
コンパイル使用メモリ 77,548 KB
実行使用メモリ 41,708 KB
最終ジャッジ日時 2024-09-19 19:04:48
合計ジャッジ時間 8,619 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
39,872 KB
testcase_01 AC 126 ms
41,504 KB
testcase_02 WA -
testcase_03 AC 126 ms
41,388 KB
testcase_04 AC 132 ms
41,192 KB
testcase_05 AC 132 ms
41,244 KB
testcase_06 AC 123 ms
41,384 KB
testcase_07 AC 113 ms
41,368 KB
testcase_08 AC 127 ms
41,212 KB
testcase_09 AC 112 ms
41,280 KB
testcase_10 AC 121 ms
40,088 KB
testcase_11 AC 127 ms
41,240 KB
testcase_12 AC 114 ms
39,872 KB
testcase_13 AC 128 ms
41,324 KB
testcase_14 AC 127 ms
41,120 KB
testcase_15 AC 128 ms
41,428 KB
testcase_16 AC 114 ms
41,136 KB
testcase_17 AC 115 ms
41,488 KB
testcase_18 AC 124 ms
41,144 KB
testcase_19 AC 124 ms
41,708 KB
testcase_20 AC 132 ms
41,308 KB
testcase_21 AC 125 ms
41,384 KB
testcase_22 AC 125 ms
41,404 KB
testcase_23 AC 125 ms
41,224 KB
testcase_24 AC 126 ms
41,424 KB
testcase_25 AC 127 ms
41,164 KB
testcase_26 AC 125 ms
41,356 KB
testcase_27 AC 131 ms
41,024 KB
testcase_28 AC 126 ms
41,248 KB
testcase_29 AC 126 ms
41,692 KB
testcase_30 AC 126 ms
41,124 KB
testcase_31 AC 125 ms
41,228 KB
testcase_32 AC 127 ms
40,956 KB
testcase_33 AC 124 ms
41,424 KB
testcase_34 AC 132 ms
41,220 KB
testcase_35 AC 127 ms
41,272 KB
testcase_36 AC 127 ms
41,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static long gcd (long a , long b) {
		if (a < b) {
			long tmp = a;
			a = b;
			b = tmp;
		}
		if (b == 0) return a;
		return gcd(b , a % b);
	}
	
	public static long solve (int n , int a , int b , int c) {
		long d = a * b / gcd(a , b);
		long e = b * c / gcd(b , c);
		long f = c * a / gcd(c , a);
		long g = c * d / gcd(c , d);
		return n / a + n / b + n / c - (n / d + n / e + n / f) + n / g;
	}
	
	public static void main (String[] args) throws IOException {
		Scanner sc = new Scanner(System.in);
		
		int n = sc.nextInt();
		int a = sc.nextInt();
		int b = sc.nextInt();
		int c = sc.nextInt();
		
		out(solve(n,a,b,c));
	}
}
0