結果
問題 | No.76 回数の期待値で練習 |
ユーザー | hotpepsi |
提出日時 | 2016-02-21 00:26:28 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 20 ms / 5,000 ms |
コード長 | 628 bytes |
コンパイル時間 | 509 ms |
コンパイル使用メモリ | 57,676 KB |
実行使用メモリ | 11,392 KB |
最終ジャッジ日時 | 2024-09-22 12:31:17 |
合計ジャッジ時間 | 1,015 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 2 |
ソースコード
#include <iostream> #include <sstream> using namespace std; double p[7] = { 0, 1.0 / 12, 2.0 / 12, 3.0 / 12, 1.0 / 12, 3.0 / 12, 2.0 / 12 }; double dp[1000001] = { 0, 1.0000000000000000, 1.0833333333333333, 1.2569444444444444, 1.5353009259259260, 1.6915991512345676, 2.0513639724794235 }; int main(int argc, char *argv[]) { cout.precision(12); for (int i = 7; i <= 1000000; ++i) { dp[i] = 1 + dp[i - 1] * p[1] + dp[i - 2] * p[2] + dp[i - 3] * p[3] + dp[i - 4] * p[4] + dp[i - 5] * p[5] + dp[i - 6] * p[6]; } int T; cin >> T; for (int i = 0; i < T; ++i) { int n; cin >> n; cout << dp[n] << endl; } return 0; }