結果
問題 | No.301 サイコロで確率問題 (1) |
ユーザー | mkawa2 |
提出日時 | 2020-02-07 09:27:34 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,086 bytes |
コンパイル時間 | 85 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 24,632 KB |
最終ジャッジ日時 | 2024-09-25 07:14:06 |
合計ジャッジ時間 | 4,506 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ソースコード
import sys sys.setrecursionlimit(10 ** 6) from bisect import * from collections import * from heapq import * def II(): return int(sys.stdin.readline()) def MI(): return map(int, sys.stdin.readline().split()) def LI(): return list(map(int, sys.stdin.readline().split())) def SI(): return sys.stdin.readline()[:-1] def LLI(rows_number): return [LI() for _ in range(rows_number)] int1 = lambda x: int(x) - 1 def MI1(): return map(int1, sys.stdin.readline().split()) def LI1(): return list(map(int1, sys.stdin.readline().split())) p2D = lambda x: print(*x, sep="\n") dij = [(0, 1), (1, 0), (0, -1), (-1, 0)] def main(): for x in range(II()): k = II() if k>1000: print(k+4/3) continue dp = [0] * (k + 1) loop = 100 l = 0 r = k + 6 for _ in range(loop): m=(l+r)/2 dp[0]=m for i in range(k - 1, -1, -1): dp[i] = sum(dp[i + j] if i + j <= k else dp[0] for j in range(1, 7)) / 6 + 1 if dp[0]>m:l=m else:r=m print(m) main()