結果
問題 | No.65 回数の期待値の練習 |
ユーザー | fiord |
提出日時 | 2015-06-17 00:44:09 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 273 bytes |
コンパイル時間 | 440 ms |
コンパイル使用メモリ | 58,020 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-07 03:26:26 |
合計ジャッジ時間 | 1,171 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 16 |
ソースコード
#include <algorithm> #include <iostream> using namespace std; int main(){ int k; cin>>k; double ans[21]; ans[0]=1; ans[1]=1; for(int i=0;i<=k;i++){ ans[i]=0; for(int j=1;i-j>0&&j<=6;j++){ ans[i]+=ans[i-j]/6; } ans[i]+=1; } cout<<ans[k]<<endl; return 0; }