結果

問題 No.301 サイコロで確率問題 (1)
ユーザー mamekinmamekin
提出日時 2016-02-19 23:49:28
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 35 ms / 1,000 ms
コード長 1,090 bytes
コンパイル時間 691 ms
コンパイル使用メモリ 91,552 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-23 18:36:10
合計ジャッジ時間 1,385 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
4,348 KB
testcase_01 AC 35 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <sstream>
#include <fstream>
#include <iomanip>
#include <algorithm>
#include <cmath>
#include <string>
#include <vector>
#include <list>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <bitset>
#include <numeric>
#include <limits>
#include <climits>
#include <cfloat>
#include <functional>
using namespace std;

int main()
{
    const int n = 10000;
    vector<pair<double, double> > dp(n+1);
    for(int i=1; i<=n; ++i){
        for(int j=i-6; j<=i-1; ++j){
            if(j < 0){
                dp[i].first += 1.0 / 6.0;
                dp[i].second += 1.0 / 6.0;
            }
            else{
                dp[i].first += (dp[j].first + 1.0) / 6.0;
                dp[i].second += dp[j].second / 6.0;
            }
        }
    }

    int t;
    cin >> t;

    while(--t >= 0){
        long long k;
        cin >> k;

        double ans;
        if(k > n)
            ans = k + 5.0 / 3.0;
        else
            ans = dp[k].first / (1 - dp[k].second);
        printf("%.12f\n", ans);
    }

    return 0;
}
0