結果

問題 No.2389 Cheating Code Golf
ユーザー 👑 獅子座じゃない人獅子座じゃない人
提出日時 2023-06-18 17:48:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,556 KB
最終ジャッジ日時 2024-06-26 07:31:53
合計ジャッジ時間 5,443 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 93 ms
75,088 KB
testcase_03 AC 170 ms
78,556 KB
testcase_04 AC 174 ms
78,236 KB
testcase_05 AC 67 ms
69,888 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 72 ms
71,296 KB
testcase_08 AC 108 ms
77,308 KB
testcase_09 AC 40 ms
52,608 KB
testcase_10 AC 55 ms
63,104 KB
testcase_11 AC 75 ms
71,552 KB
testcase_12 AC 39 ms
52,352 KB
testcase_13 AC 99 ms
76,892 KB
testcase_14 AC 83 ms
74,928 KB
testcase_15 AC 55 ms
64,128 KB
testcase_16 AC 105 ms
77,040 KB
testcase_17 AC 38 ms
51,968 KB
testcase_18 AC 80 ms
74,648 KB
testcase_19 AC 39 ms
51,968 KB
testcase_20 AC 53 ms
63,488 KB
testcase_21 AC 74 ms
72,448 KB
testcase_22 AC 61 ms
66,816 KB
testcase_23 AC 40 ms
52,096 KB
testcase_24 AC 78 ms
73,568 KB
testcase_25 AC 74 ms
72,576 KB
testcase_26 AC 61 ms
66,304 KB
testcase_27 AC 95 ms
77,056 KB
testcase_28 AC 90 ms
76,668 KB
testcase_29 AC 61 ms
66,472 KB
testcase_30 AC 96 ms
76,800 KB
testcase_31 AC 68 ms
68,864 KB
testcase_32 AC 39 ms
52,352 KB
testcase_33 AC 42 ms
52,736 KB
testcase_34 AC 100 ms
77,312 KB
testcase_35 AC 72 ms
69,628 KB
testcase_36 AC 88 ms
74,652 KB
testcase_37 AC 64 ms
67,456 KB
testcase_38 AC 123 ms
77,312 KB
testcase_39 AC 41 ms
52,224 KB
testcase_40 AC 52 ms
62,592 KB
testcase_41 AC 54 ms
63,744 KB
testcase_42 AC 75 ms
72,320 KB
testcase_43 AC 42 ms
52,352 KB
testcase_44 AC 53 ms
63,104 KB
testcase_45 AC 116 ms
77,604 KB
testcase_46 AC 103 ms
77,312 KB
testcase_47 AC 39 ms
52,352 KB
testcase_48 AC 70 ms
70,016 KB
testcase_49 AC 80 ms
74,196 KB
testcase_50 AC 39 ms
52,224 KB
testcase_51 AC 71 ms
69,760 KB
testcase_52 AC 70 ms
70,400 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:
                dp[i][j]=max(dp[i-2**k][j]+1/a[k],dp[i][j])
            if j:
                if (i>>k)%2:
                    dp[i][j]=max((dp[i-2**k][j]+1/b[k])/p[k]+dp[i][j-1]*(1-1/p[k]),dp[i][j])
print(dp[2**n-1][m])
0