結果

問題 No.437 cwwゲーム
ユーザー convexineqconvexineq
提出日時 2021-02-16 04:08:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 472 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 87,032 KB
実行使用メモリ 76,548 KB
最終ジャッジ日時 2023-10-01 01:37:38
合計ジャッジ時間 5,977 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,560 KB
testcase_01 AC 71 ms
71,360 KB
testcase_02 AC 75 ms
75,828 KB
testcase_03 AC 71 ms
71,304 KB
testcase_04 AC 74 ms
71,264 KB
testcase_05 AC 76 ms
75,732 KB
testcase_06 AC 76 ms
76,004 KB
testcase_07 AC 80 ms
76,428 KB
testcase_08 AC 81 ms
76,436 KB
testcase_09 AC 83 ms
76,424 KB
testcase_10 AC 84 ms
76,548 KB
testcase_11 AC 75 ms
75,896 KB
testcase_12 AC 76 ms
76,200 KB
testcase_13 AC 78 ms
76,184 KB
testcase_14 AC 76 ms
75,964 KB
testcase_15 AC 85 ms
76,440 KB
testcase_16 AC 78 ms
75,920 KB
testcase_17 AC 74 ms
71,416 KB
testcase_18 AC 75 ms
75,828 KB
testcase_19 AC 71 ms
71,540 KB
testcase_20 AC 71 ms
71,504 KB
testcase_21 AC 71 ms
71,352 KB
testcase_22 AC 70 ms
71,380 KB
testcase_23 AC 75 ms
75,756 KB
testcase_24 AC 71 ms
71,192 KB
testcase_25 AC 75 ms
75,796 KB
testcase_26 AC 76 ms
75,932 KB
testcase_27 AC 71 ms
71,244 KB
testcase_28 AC 71 ms
71,536 KB
testcase_29 AC 70 ms
71,168 KB
testcase_30 AC 73 ms
71,516 KB
testcase_31 AC 71 ms
71,188 KB
testcase_32 AC 69 ms
71,332 KB
testcase_33 AC 72 ms
71,352 KB
testcase_34 AC 71 ms
71,340 KB
testcase_35 AC 73 ms
71,436 KB
testcase_36 AC 71 ms
71,340 KB
testcase_37 AC 73 ms
71,324 KB
testcase_38 AC 72 ms
71,240 KB
testcase_39 AC 72 ms
71,176 KB
testcase_40 AC 72 ms
71,432 KB
testcase_41 AC 73 ms
71,396 KB
testcase_42 AC 72 ms
71,164 KB
testcase_43 AC 71 ms
71,440 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