結果

問題 No.2389 Cheating Code Golf
ユーザー 👑 獅子座じゃない人獅子座じゃない人
提出日時 2023-06-18 18:12:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 598 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 78,400 KB
最終ジャッジ日時 2024-06-26 07:32:01
合計ジャッジ時間 5,803 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 100 ms
76,844 KB
testcase_03 AC 173 ms
78,400 KB
testcase_04 AC 173 ms
78,080 KB
testcase_05 AC 69 ms
71,168 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 73 ms
73,216 KB
testcase_08 AC 115 ms
77,056 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 51 ms
63,360 KB
testcase_11 AC 72 ms
72,064 KB
testcase_12 AC 38 ms
52,096 KB
testcase_13 AC 99 ms
77,048 KB
testcase_14 AC 88 ms
76,544 KB
testcase_15 AC 50 ms
62,720 KB
testcase_16 AC 104 ms
76,672 KB
testcase_17 AC 36 ms
51,968 KB
testcase_18 AC 85 ms
76,672 KB
testcase_19 AC 37 ms
52,224 KB
testcase_20 AC 50 ms
62,464 KB
testcase_21 AC 72 ms
72,748 KB
testcase_22 AC 56 ms
65,024 KB
testcase_23 AC 38 ms
52,224 KB
testcase_24 AC 76 ms
73,984 KB
testcase_25 AC 74 ms
73,088 KB
testcase_26 AC 54 ms
64,896 KB
testcase_27 AC 92 ms
76,928 KB
testcase_28 AC 87 ms
76,544 KB
testcase_29 AC 60 ms
67,456 KB
testcase_30 AC 95 ms
77,024 KB
testcase_31 AC 66 ms
70,784 KB
testcase_32 AC 37 ms
51,968 KB
testcase_33 AC 38 ms
52,608 KB
testcase_34 AC 95 ms
76,800 KB
testcase_35 AC 69 ms
70,912 KB
testcase_36 AC 91 ms
77,056 KB
testcase_37 AC 61 ms
67,840 KB
testcase_38 AC 118 ms
77,184 KB
testcase_39 AC 38 ms
51,712 KB
testcase_40 AC 49 ms
62,720 KB
testcase_41 AC 48 ms
63,232 KB
testcase_42 AC 64 ms
68,480 KB
testcase_43 AC 39 ms
52,096 KB
testcase_44 AC 51 ms
62,848 KB
testcase_45 AC 110 ms
77,184 KB
testcase_46 AC 98 ms
77,056 KB
testcase_47 AC 36 ms
51,968 KB
testcase_48 AC 69 ms
71,552 KB
testcase_49 AC 79 ms
74,880 KB
testcase_50 AC 38 ms
52,224 KB
testcase_51 AC 74 ms
71,552 KB
testcase_52 AC 75 ms
72,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split()) 
abp=[map(int,input().split()) for _ in range(n)]
a,b,p=[list(i) for i in zip(*abp)]

dp=[[0 for j in range(m+1)] for i in range(2**n)]
for i in range(2**n):
    for j in range(m+1):
        for k in range(n):
            if (i>>k)%2:
                if dp[i-2**k][j]+1/a[k]>dp[i][j]:
                    dp[i][j]=dp[i-2**k][j]+1/a[k]
            if j:
                if (i>>k)%2:
                    if (dp[i-2**k][j]+1/b[k])/p[k]+dp[i][j-1]*(1-1/p[k])>dp[i][j]:
                        dp[i][j]=(dp[i-2**k][j]+1/b[k])/p[k]+dp[i][j-1]*(1-1/p[k])
print(dp[2**n-1][m])
0