結果
| 問題 |
No.301 サイコロで確率問題 (1)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-02-19 23:49:28 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 35 ms / 1,000 ms |
| コード長 | 1,090 bytes |
| コンパイル時間 | 761 ms |
| コンパイル使用メモリ | 91,856 KB |
| 実行使用メモリ | 6,940 KB |
| 最終ジャッジ日時 | 2024-09-22 12:23:44 |
| 合計ジャッジ時間 | 1,285 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 2 |
ソースコード
#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;
}