結果

問題 No.437 cwwゲーム
ユーザー kohei2019kohei2019
提出日時 2022-01-25 00:40:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 712 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-05-08 21:34:57
合計ジャッジ時間 4,362 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
53,800 KB
testcase_01 AC 47 ms
53,756 KB
testcase_02 AC 89 ms
71,168 KB
testcase_03 AC 44 ms
53,376 KB
testcase_04 AC 42 ms
53,584 KB
testcase_05 AC 79 ms
72,068 KB
testcase_06 AC 84 ms
74,364 KB
testcase_07 AC 89 ms
76,160 KB
testcase_08 AC 79 ms
71,572 KB
testcase_09 AC 89 ms
76,024 KB
testcase_10 AC 82 ms
71,552 KB
testcase_11 AC 45 ms
54,144 KB
testcase_12 AC 47 ms
54,300 KB
testcase_13 AC 74 ms
69,248 KB
testcase_14 AC 54 ms
61,952 KB
testcase_15 AC 80 ms
71,612 KB
testcase_16 AC 105 ms
76,416 KB
testcase_17 AC 71 ms
69,236 KB
testcase_18 AC 64 ms
66,848 KB
testcase_19 WA -
testcase_20 AC 44 ms
53,504 KB
testcase_21 AC 44 ms
53,792 KB
testcase_22 AC 44 ms
53,376 KB
testcase_23 AC 103 ms
76,544 KB
testcase_24 AC 45 ms
54,400 KB
testcase_25 AC 98 ms
76,408 KB
testcase_26 AC 100 ms
76,508 KB
testcase_27 AC 43 ms
53,760 KB
testcase_28 AC 43 ms
54,144 KB
testcase_29 AC 42 ms
53,888 KB
testcase_30 AC 43 ms
53,300 KB
testcase_31 AC 43 ms
53,376 KB
testcase_32 AC 43 ms
53,816 KB
testcase_33 AC 62 ms
65,192 KB
testcase_34 AC 44 ms
53,720 KB
testcase_35 AC 69 ms
68,612 KB
testcase_36 AC 43 ms
53,760 KB
testcase_37 AC 44 ms
53,356 KB
testcase_38 AC 43 ms
53,504 KB
testcase_39 AC 44 ms
53,664 KB
testcase_40 AC 44 ms
53,888 KB
testcase_41 AC 70 ms
69,240 KB
testcase_42 AC 68 ms
67,152 KB
testcase_43 AC 76 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!=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