結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,632 KB
testcase_01 AC 45 ms
53,760 KB
testcase_02 AC 76 ms
71,296 KB
testcase_03 AC 41 ms
53,632 KB
testcase_04 AC 41 ms
53,760 KB
testcase_05 AC 73 ms
73,088 KB
testcase_06 AC 78 ms
76,288 KB
testcase_07 AC 78 ms
76,288 KB
testcase_08 AC 82 ms
76,160 KB
testcase_09 AC 77 ms
76,172 KB
testcase_10 AC 71 ms
71,936 KB
testcase_11 AC 42 ms
54,400 KB
testcase_12 AC 42 ms
54,400 KB
testcase_13 AC 65 ms
69,248 KB
testcase_14 AC 50 ms
61,932 KB
testcase_15 AC 70 ms
71,424 KB
testcase_16 AC 97 ms
76,800 KB
testcase_17 AC 65 ms
69,376 KB
testcase_18 AC 60 ms
66,816 KB
testcase_19 AC 41 ms
53,760 KB
testcase_20 AC 40 ms
53,504 KB
testcase_21 AC 42 ms
53,888 KB
testcase_22 AC 41 ms
53,760 KB
testcase_23 AC 99 ms
76,544 KB
testcase_24 AC 43 ms
53,760 KB
testcase_25 AC 91 ms
76,288 KB
testcase_26 AC 94 ms
76,416 KB
testcase_27 AC 42 ms
53,760 KB
testcase_28 AC 41 ms
53,888 KB
testcase_29 AC 41 ms
53,376 KB
testcase_30 AC 41 ms
53,248 KB
testcase_31 AC 41 ms
53,760 KB
testcase_32 AC 41 ms
53,504 KB
testcase_33 AC 56 ms
65,408 KB
testcase_34 AC 41 ms
53,760 KB
testcase_35 AC 63 ms
69,632 KB
testcase_36 AC 42 ms
53,760 KB
testcase_37 AC 42 ms
54,016 KB
testcase_38 AC 42 ms
53,760 KB
testcase_39 AC 41 ms
53,504 KB
testcase_40 AC 41 ms
53,376 KB
testcase_41 AC 64 ms
69,504 KB
testcase_42 AC 60 ms
67,328 KB
testcase_43 AC 67 ms
70,272 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