結果

問題 No.574 正多面体サイコロ
ユーザー kotatsugamekotatsugame
提出日時 2017-10-09 06:46:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 766 ms
コンパイル使用メモリ 71,592 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-17 06:19:53
合計ジャッジ時間 1,672 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 3 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 4 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:6:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    6 | main()
      | ^~~~
main.cpp: In function 'int main()':
main.cpp:9:37: warning: iteration 99 invokes undefined behavior [-Waggressive-loop-optimizations]
    9 |         for(int i=0;i++<100;)fact[i]=fact[i-1]*i;
      |                              ~~~~~~~^~~~~~~~~~~~
main.cpp:9:24: note: within this loop
    9 |         for(int i=0;i++<100;)fact[i]=fact[i-1]*i;
      |                     ~~~^~~~

ソースコード

diff #

#include<iostream>
#include<iomanip>
using namespace std;
double fact[100]={1},ans;int f,n,k;
double pow(double a,int b){return b?pow(a*a,b/2)*(b%2?a:1):1;}
main()
{
	cin>>f>>n>>k;
	for(int i=0;i++<100;)fact[i]=fact[i-1]*i;
	for(int i=1;i<=f;i++)
	{
		for(int j=0;j<k;j++)
		{
			for(int l=k-j;j+l<=n;l++)
			{
				ans+=i*(fact[n]/fact[j]/fact[l]/fact[n-j-l])*pow(f-i,j)*pow(i-1,n-j-l)/pow(f,n);
			}
		}
	}
	cout<<fixed<<setprecision(15)<<ans<<endl;
}
0