結果

問題 No.575 n! / m / m / m...
ユーザー kotatsugamekotatsugame
提出日時 2017-10-09 21:24:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 760 bytes
コンパイル時間 706 ms
コンパイル使用メモリ 77,876 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-11-17 07:04:38
合計ジャッジ時間 41,356 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
8,576 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 3 ms
8,448 KB
testcase_04 AC 2 ms
8,448 KB
testcase_05 TLE -
testcase_06 WA -
testcase_07 AC 2 ms
8,448 KB
testcase_08 AC 3 ms
10,496 KB
testcase_09 WA -
testcase_10 AC 2 ms
10,496 KB
testcase_11 AC 2 ms
8,448 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 12 ms
10,496 KB
testcase_24 TLE -
testcase_25 AC 12 ms
8,320 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:19:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   19 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<iomanip>
#include<cmath>
#include<algorithm>
using namespace std;
long n,m,c,d;
double N,M;
double mypow(double a,long b)
{
	if(b==0)return 1;
	else
	{
		while(a>=10)d+=b,a/=10;
		a=mypow(a*a,b/2)*(b%2?a:1);
		while(a>=10)d++,a/=10;
		return a;
	}
}
main()
{
	cin>>n>>m;N=n,M=m;
	for(long i=2;i*i<=m;i++)
	{
		if(m%i==0)
		{
			long cnt=0,a=n/i;
			while(m%i==0)m/=i,cnt++;
			for(long j=i;~-n/j+1>=j;a+=n/j)j*=j;
			c=max(c,a/cnt);
		}
	}
	if(m>1)
	{
		long a=n/m;
		for(long j=m;~-n/j+1>=j;a+=n/j)j*=j;
		c=max(c,a);
	}
	N++;
	double ori=(N+1/(12*N-1/(10*N)))/M_E;
	double f=sqrtl(2*M_PI/N)*mypow(ori,N);
	for(long i=0;i<c;i++)f/=M;
	while(f>=10)d++,f/=10;
	while(f<1)d--,f*=10;
	cout<<fixed<<setprecision(15)<<f<<"e"<<d<<endl;
}
0