結果

問題 No.2389 Cheating Code Golf
ユーザー 👑 獅子座じゃない人獅子座じゃない人
提出日時 2023-06-18 17:23:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 485 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 18,176 KB
最終ジャッジ日時 2024-06-26 07:31:39
合計ジャッジ時間 15,093 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 536 ms
12,416 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 75 ms
10,880 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 114 ms
11,008 KB
testcase_08 AC 726 ms
13,056 KB
testcase_09 AC 32 ms
10,624 KB
testcase_10 AC 33 ms
10,752 KB
testcase_11 AC 120 ms
11,136 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 543 ms
12,416 KB
testcase_14 AC 182 ms
11,392 KB
testcase_15 AC 35 ms
10,752 KB
testcase_16 AC 615 ms
12,544 KB
testcase_17 AC 31 ms
10,496 KB
testcase_18 AC 127 ms
11,008 KB
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 34 ms
10,624 KB
testcase_21 AC 69 ms
10,880 KB
testcase_22 AC 36 ms
10,752 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 101 ms
11,008 KB
testcase_25 AC 73 ms
10,880 KB
testcase_26 AC 36 ms
10,496 KB
testcase_27 AC 193 ms
11,392 KB
testcase_28 AC 94 ms
10,880 KB
testcase_29 AC 38 ms
10,752 KB
testcase_30 AC 464 ms
12,288 KB
testcase_31 AC 52 ms
10,880 KB
testcase_32 AC 31 ms
10,624 KB
testcase_33 AC 31 ms
10,624 KB
testcase_34 AC 250 ms
11,648 KB
testcase_35 AC 64 ms
10,880 KB
testcase_36 AC 445 ms
12,160 KB
testcase_37 AC 39 ms
10,752 KB
testcase_38 AC 998 ms
13,824 KB
testcase_39 AC 31 ms
10,624 KB
testcase_40 AC 34 ms
10,752 KB
testcase_41 AC 37 ms
10,880 KB
testcase_42 AC 42 ms
10,880 KB
testcase_43 AC 33 ms
10,752 KB
testcase_44 AC 34 ms
10,752 KB
testcase_45 AC 948 ms
13,440 KB
testcase_46 AC 430 ms
11,904 KB
testcase_47 AC 31 ms
10,624 KB
testcase_48 AC 96 ms
10,880 KB
testcase_49 AC 181 ms
11,264 KB
testcase_50 AC 31 ms
10,624 KB
testcase_51 AC 122 ms
11,008 KB
testcase_52 AC 71 ms
10,880 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