結果
問題 | No.301 サイコロで確率問題 (1) |
ユーザー | tubo28 |
提出日時 | 2015-12-27 01:27:24 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 765 bytes |
コンパイル時間 | 1,276 ms |
コンパイル使用メモリ | 160,400 KB |
実行使用メモリ | 6,812 KB |
最終ジャッジ日時 | 2024-09-19 07:18:56 |
合計ジャッジ時間 | 2,587 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 17 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:39:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 39 | scanf("%lld",&n); | ~~~~~^~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> using namespace std; using ld = long double; long long n; // e0を仮定してにぶたん bool le(const ld e0){ vector<ld> e(n+1); for(int i = n-1; i >= 0; i--){ for(int j = i+1; j <= i+6; j++){ if(j > n){ e[i] += (e0+1) / 6; } else { e[i] += (e[j]+1) / 6; } } } return e0 < e[0]; } ld solve(){ if(n > 700) return n + 5./3; ld lo = 0; ld hi = 1e20; for(int _ = 0; _ < 60; ++_){ ld mid = (lo + hi) / 2; if(le(mid)) lo = mid; else hi = mid; } return lo; } int main(){ int t; cin >> t; while(t--){ scanf("%lld",&n); printf("%.20lf\n", (double)solve()); } }