結果

問題 No.437 cwwゲーム
ユーザー kohei2019kohei2019
提出日時 2022-01-25 00:41:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 726 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-05-08 21:36:12
合計ジャッジ時間 3,897 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,376 KB
testcase_01 AC 40 ms
53,632 KB
testcase_02 AC 70 ms
70,912 KB
testcase_03 AC 41 ms
53,888 KB
testcase_04 AC 40 ms
53,760 KB
testcase_05 AC 76 ms
72,832 KB
testcase_06 AC 82 ms
76,288 KB
testcase_07 AC 86 ms
76,160 KB
testcase_08 AC 85 ms
76,544 KB
testcase_09 AC 85 ms
76,032 KB
testcase_10 AC 75 ms
71,552 KB
testcase_11 AC 40 ms
53,888 KB
testcase_12 AC 44 ms
54,144 KB
testcase_13 AC 69 ms
69,632 KB
testcase_14 AC 53 ms
62,208 KB
testcase_15 AC 75 ms
71,296 KB
testcase_16 AC 106 ms
76,800 KB
testcase_17 AC 72 ms
69,376 KB
testcase_18 AC 64 ms
66,944 KB
testcase_19 AC 40 ms
53,888 KB
testcase_20 AC 42 ms
53,760 KB
testcase_21 AC 41 ms
54,016 KB
testcase_22 AC 42 ms
53,888 KB
testcase_23 AC 101 ms
76,672 KB
testcase_24 AC 42 ms
53,632 KB
testcase_25 AC 96 ms
76,800 KB
testcase_26 AC 98 ms
76,800 KB
testcase_27 AC 42 ms
53,760 KB
testcase_28 AC 41 ms
54,144 KB
testcase_29 AC 41 ms
53,888 KB
testcase_30 AC 39 ms
53,504 KB
testcase_31 AC 41 ms
53,376 KB
testcase_32 AC 40 ms
53,376 KB
testcase_33 AC 57 ms
65,408 KB
testcase_34 AC 43 ms
53,504 KB
testcase_35 AC 69 ms
69,504 KB
testcase_36 AC 42 ms
54,144 KB
testcase_37 AC 42 ms
53,888 KB
testcase_38 AC 41 ms
53,376 KB
testcase_39 AC 40 ms
53,504 KB
testcase_40 AC 41 ms
54,016 KB
testcase_41 AC 67 ms
69,632 KB
testcase_42 AC 63 ms
67,584 KB
testcase_43 AC 70 ms
70,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N = list(input())
ans = 0
dd = collections.defaultdict(lambda:0)
def func(ls):
    if len(ls) < 3:
        dd[''.join(ls)] = 0
        return 0
    s = ''.join(ls)
    if s in dd:
        return dd[s]
    c = len(ls)
    val = 0
    for i in range(c-2):
        for j in range(i+1,c-1):
            for k in range(j+1,c):
                ls0 = ls[:]
                a0,b0,c0 = ls0[i],ls0[k],ls0[j]
                del ls0[i]
                del ls0[j-1]
                del ls0[k-2]
                if a0 != '0' and a0!=b0 and b0==c0:
                    val = max(val,func(ls0)+int(a0+b0+c0))
                else:
                    val = max(val,func(ls0))
    dd[s] = val
    return val
print(func(N))
0