結果
問題 | No.76 回数の期待値で練習 |
ユーザー | fiord |
提出日時 | 2015-08-09 14:50:33 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 230 ms / 5,000 ms |
コード長 | 315 bytes |
コンパイル時間 | 1,187 ms |
コンパイル使用メモリ | 157,524 KB |
実行使用メモリ | 81,792 KB |
最終ジャッジ日時 | 2024-07-18 06:11:35 |
合計ジャッジ時間 | 2,254 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 230 ms
81,664 KB |
testcase_01 | AC | 230 ms
81,792 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; double dp[10000000]; int p[]={12,6,4,12,4,6}; int main(){ for(int i=0;i<10000000;i++){ for(int j=1;j<=min(i,6);j++){ dp[i]+=dp[i-j]/p[j-1]; } dp[i]++; } int t; cin>>t; for(int i=0;i<t;i++){ int n; cin>>n; printf("%.15lf\n",dp[n-1]); } return 0; }