結果

問題 No.302 サイコロで確率問題 (2)
ユーザー cielciel
提出日時 2015-11-14 11:58:33
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 529 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 44,032 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-13 16:44:27
合計ジャッジ時間 19,538 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 RE -
testcase_12 RE -
testcase_13 WA -
testcase_14 AC 2,448 ms
6,940 KB
testcase_15 WA -
testcase_16 RE -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:22:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   22 |         scanf("%lld%lld%lld",&N,&L,&R);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <vector>
#include <cstdio>
#include <cmath>
using namespace std;

double probably(int n, int s, int l, int r){
	//perform checkio probably-dice
	vector<double> a(s*(n+1)+1);
	for(int i=1;i<=s;i++)a[i+s]=pow(1.0/s,n);
	for(int e=0;e<n-1;e++)for(int i=s*n;i>=0;i--){
		double sum=0;
		for(int j=i;j<i+s;j++)sum+=a[j];
		a[i+s]=sum;
	}
	double ret=0;
	for(;l<=r;l++)ret+=a[s+l];
	return ret;
}

int main(){
	long long N,L,R;
	scanf("%lld%lld%lld",&N,&L,&R);
	if(N<20000){
		printf("%.15f\n",probably(N,6,L,R));
	}else{
	}
}
0