結果

問題 No.575 n! / m / m / m...
ユーザー 37zigen37zigen
提出日時 2017-10-07 05:55:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 1,529 bytes
コンパイル時間 3,215 ms
コンパイル使用メモリ 84,244 KB
実行使用メモリ 42,980 KB
最終ジャッジ日時 2024-11-17 03:46:31
合計ジャッジ時間 8,354 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
42,428 KB
testcase_01 AC 163 ms
42,876 KB
testcase_02 AC 157 ms
42,680 KB
testcase_03 AC 159 ms
42,700 KB
testcase_04 AC 153 ms
42,660 KB
testcase_05 AC 162 ms
42,740 KB
testcase_06 AC 167 ms
42,556 KB
testcase_07 AC 162 ms
42,668 KB
testcase_08 AC 161 ms
42,688 KB
testcase_09 AC 167 ms
42,432 KB
testcase_10 AC 167 ms
42,940 KB
testcase_11 AC 165 ms
42,872 KB
testcase_12 AC 163 ms
42,980 KB
testcase_13 AC 147 ms
42,672 KB
testcase_14 AC 160 ms
42,548 KB
testcase_15 AC 162 ms
42,728 KB
testcase_16 AC 152 ms
42,856 KB
testcase_17 AC 162 ms
42,528 KB
testcase_18 AC 162 ms
42,816 KB
testcase_19 AC 150 ms
42,272 KB
testcase_20 AC 157 ms
42,552 KB
testcase_21 AC 169 ms
42,752 KB
testcase_22 AC 171 ms
42,448 KB
testcase_23 AC 183 ms
42,516 KB
testcase_24 AC 163 ms
42,272 KB
testcase_25 AC 171 ms
42,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		double n = sc.nextDouble();
		double m = sc.nextDouble();
		long c = Long.MAX_VALUE;
		ArrayList<long[]> lis = flis((long) (m + 1e-9));
		for (long[] f : lis) {
			long tmp = 0;
			long n_ = (long) (n + 1e-9);
			while (n_ > 1) {
				tmp += n_ / f[0];
				n_ /= f[0];
			}
			c = Math.min(c, tmp / f[1]);
		}
		if (n < 170) {
			double ret = 1;
			for (int i = 2; i <= n; ++i) {
				ret *= i;
			}
			while (ret % m == 0)
				ret /= m;
			int cnt = 0;
			while (ret >= 10) {
				++cnt;
				ret /= 10;
			}
			System.out.println(ret + "e" + cnt);
			return;
		}
		++n;
		double v = Math.log10(Math.sqrt(2 * Math.PI)) + n * Math.log10(n / Math.E) - 0.5 * Math.log10(n)
				  - c * Math.log10(m);
		System.out.println(Math.pow(10, v - (long) v) + "e" + (long) v);
	}

	ArrayList<long[]> flis(long n) {
		ArrayList<long[]> ret = new ArrayList<>();
		for (long i = 2; i * i <= n; ++i) {
			if (n % i == 0) {
				int c = 0;
				while (n % i == 0) {
					n /= i;
					++c;
				}
				ret.add(new long[] { i, c });
			}
		}
		if (n > 1)
			ret.add(new long[] { n, 1 });
		return ret;
	}

	long pow(long a, long n) {
		long ret = 1;
		for (; n > 0; n >>= 1, a *= a) {
			if (n % 2 == 1) {
				ret *= a;
			}
		}
		return ret;
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0