結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー GrenacheGrenache
提出日時 2015-12-09 00:07:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 57 ms / 1,000 ms
コード長 2,018 bytes
コンパイル時間 4,635 ms
コンパイル使用メモリ 78,216 KB
実行使用メモリ 50,624 KB
最終ジャッジ日時 2024-11-21 11:19:12
合計ジャッジ時間 6,879 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,084 KB
testcase_01 AC 56 ms
50,504 KB
testcase_02 AC 56 ms
50,452 KB
testcase_03 AC 57 ms
50,480 KB
testcase_04 AC 56 ms
50,512 KB
testcase_05 AC 56 ms
50,480 KB
testcase_06 AC 54 ms
50,092 KB
testcase_07 AC 55 ms
50,500 KB
testcase_08 AC 56 ms
50,456 KB
testcase_09 AC 57 ms
50,100 KB
testcase_10 AC 57 ms
50,464 KB
testcase_11 AC 57 ms
50,408 KB
testcase_12 AC 56 ms
49,980 KB
testcase_13 AC 56 ms
50,500 KB
testcase_14 AC 55 ms
50,204 KB
testcase_15 AC 56 ms
50,504 KB
testcase_16 AC 56 ms
50,416 KB
testcase_17 AC 56 ms
50,436 KB
testcase_18 AC 55 ms
50,440 KB
testcase_19 AC 55 ms
50,392 KB
testcase_20 AC 56 ms
50,556 KB
testcase_21 AC 56 ms
50,528 KB
testcase_22 AC 55 ms
50,404 KB
testcase_23 AC 55 ms
50,432 KB
testcase_24 AC 55 ms
50,004 KB
testcase_25 AC 56 ms
50,140 KB
testcase_26 AC 56 ms
50,560 KB
testcase_27 AC 56 ms
50,116 KB
testcase_28 AC 55 ms
50,112 KB
testcase_29 AC 55 ms
50,124 KB
testcase_30 AC 56 ms
50,612 KB
testcase_31 AC 55 ms
50,208 KB
testcase_32 AC 55 ms
50,076 KB
testcase_33 AC 56 ms
50,436 KB
testcase_34 AC 56 ms
50,624 KB
testcase_35 AC 57 ms
50,528 KB
testcase_36 AC 56 ms
50,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.PrintStream;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Iterator;


public class Main_yukicoder316 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        Printer pr = new Printer(System.out);

        long n = sc.nextInt();
        long a = sc.nextInt();
        long b = sc.nextInt();
        long c = sc.nextInt();

        long ab = lcm(a, b);
        long bc = lcm(b, c);
        long ca = lcm(c, a);
        long abc = lcm(ab, c);

        long ret = n / a + n / b + n / c - n / ab - n / bc - n / ca + n / abc;

        pr.println(ret);

        pr.close();
        sc.close();
    }

	private static long lcm(long n, long m) {
		return n / gcd(n, m) * m;
	}

	private static long gcd(long n, long m) {
		if (m == 0) {
			return n;
		} else {
			return gcd(m, n % m);
		}
	}

	@SuppressWarnings("unused")
	private static class Scanner {
		BufferedReader br;
		Iterator<String> it;

		Scanner (InputStream in) {
			br = new BufferedReader(new InputStreamReader(in));
		}

		String next() throws RuntimeException  {
			try {
				if (it == null || !it.hasNext()) {
					it = Arrays.asList(br.readLine().split(" ")).iterator();
				}
				return it.next();
			} catch (IOException e) {
				throw new IllegalStateException();
			}
		}

		int nextInt() throws RuntimeException {
			return Integer.parseInt(next());
		}

		long nextLong() throws RuntimeException {
			return Long.parseLong(next());
		}

		float nextFloat() throws RuntimeException {
			return Float.parseFloat(next());
		}

		double nextDouble() throws RuntimeException {
			return Double.parseDouble(next());
		}

		void close() {
			try {
				br.close();
			} catch (IOException e) {
//				throw new IllegalStateException();
			}
		}
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0