結果

問題 No.437 cwwゲーム
ユーザー convexineqconvexineq
提出日時 2021-02-16 04:08:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 472 bytes
コンパイル時間 544 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 64,240 KB
最終ジャッジ日時 2024-07-23 19:10:33
合計ジャッジ時間 3,704 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,992 KB
testcase_01 AC 39 ms
53,232 KB
testcase_02 AC 44 ms
59,692 KB
testcase_03 AC 43 ms
54,100 KB
testcase_04 AC 40 ms
53,672 KB
testcase_05 AC 43 ms
59,444 KB
testcase_06 AC 45 ms
60,956 KB
testcase_07 AC 52 ms
62,528 KB
testcase_08 AC 50 ms
61,964 KB
testcase_09 AC 52 ms
63,580 KB
testcase_10 AC 53 ms
63,652 KB
testcase_11 AC 45 ms
58,968 KB
testcase_12 AC 47 ms
60,528 KB
testcase_13 AC 46 ms
59,084 KB
testcase_14 AC 45 ms
58,832 KB
testcase_15 AC 51 ms
64,240 KB
testcase_16 AC 43 ms
59,348 KB
testcase_17 AC 40 ms
53,208 KB
testcase_18 AC 43 ms
58,936 KB
testcase_19 AC 40 ms
52,532 KB
testcase_20 AC 39 ms
52,808 KB
testcase_21 AC 40 ms
52,740 KB
testcase_22 AC 41 ms
53,944 KB
testcase_23 AC 43 ms
59,036 KB
testcase_24 AC 41 ms
53,076 KB
testcase_25 AC 42 ms
58,564 KB
testcase_26 AC 44 ms
58,300 KB
testcase_27 AC 40 ms
52,192 KB
testcase_28 AC 39 ms
52,876 KB
testcase_29 AC 38 ms
52,340 KB
testcase_30 AC 38 ms
52,568 KB
testcase_31 AC 38 ms
53,196 KB
testcase_32 AC 37 ms
53,144 KB
testcase_33 AC 38 ms
53,228 KB
testcase_34 AC 38 ms
53,148 KB
testcase_35 AC 39 ms
52,252 KB
testcase_36 AC 38 ms
52,816 KB
testcase_37 AC 38 ms
53,564 KB
testcase_38 AC 38 ms
52,816 KB
testcase_39 AC 38 ms
52,528 KB
testcase_40 AC 38 ms
52,868 KB
testcase_41 AC 39 ms
54,152 KB
testcase_42 AC 38 ms
52,596 KB
testcase_43 AC 39 ms
52,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

*a, = map(int,input())
n = len(a)
N = 1<<n
from itertools import combinations
three = []
thval = []
for p,q,r in combinations(range(n),3):
    if a[p] == 0 or a[q] != a[r] or a[p] == a[q]: continue
    three.append((1<<p)+(1<<q)+(1<<r))
    thval.append(a[p]*100+a[q]*10+a[r])
dp = [-1]*N
dp[0] = 0
for mask in range(N):
    if dp[mask] < 0: continue
    for v,w in zip(three,thval):
        if mask&v==0:
            dp[mask^v] = max(dp[mask^v],dp[mask]+w)
print(max(dp))
0