結果
問題 | No.155 生放送とBGM |
ユーザー | vwxyz |
提出日時 | 2022-04-21 02:23:35 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 531 bytes |
コンパイル時間 | 248 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 26,396 KB |
最終ジャッジ日時 | 2024-06-12 19:43:12 |
合計ジャッジ時間 | 14,587 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
ソースコード
import sys readline=sys.stdin.readline N,L=map(int,readline().split()) L*=60 S=readline().split() for i in range(N): m,s=map(int,S[i].split(":")) S[i]=m*60+s ans=0 fact=[1] for i in range(1,N+1): fact.append(fact[-1]*i) for j in range(N): dp=[[0]*L for c in range(N)] dp[0][0]=1 for s in S[:j]+S[j+1:]: for c in range(N-1,0,-1): for i in range(L-1,s-1,-1): dp[c][i]+=dp[c-1][i-s] for c in range(N): ans+=sum(dp[c])*fact[c]*fact[N-c-1] ans/=fact[N] print(ans)