結果

問題 No.437 cwwゲーム
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-10-28 23:19:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 801 bytes
コンパイル時間 1,983 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 64,640 KB
最終ジャッジ日時 2024-05-03 08:06:16
合計ジャッジ時間 3,542 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,888 KB
testcase_01 AC 42 ms
53,888 KB
testcase_02 AC 43 ms
54,016 KB
testcase_03 AC 42 ms
53,888 KB
testcase_04 AC 41 ms
53,376 KB
testcase_05 AC 48 ms
54,656 KB
testcase_06 AC 42 ms
54,656 KB
testcase_07 AC 52 ms
63,488 KB
testcase_08 AC 48 ms
61,312 KB
testcase_09 AC 53 ms
63,488 KB
testcase_10 AC 54 ms
64,640 KB
testcase_11 AC 41 ms
54,016 KB
testcase_12 AC 42 ms
54,400 KB
testcase_13 AC 43 ms
54,576 KB
testcase_14 AC 43 ms
54,144 KB
testcase_15 AC 54 ms
64,384 KB
testcase_16 AC 43 ms
54,272 KB
testcase_17 AC 43 ms
54,144 KB
testcase_18 AC 42 ms
54,784 KB
testcase_19 AC 41 ms
53,632 KB
testcase_20 AC 42 ms
53,888 KB
testcase_21 AC 42 ms
53,928 KB
testcase_22 AC 42 ms
54,144 KB
testcase_23 AC 43 ms
53,888 KB
testcase_24 AC 42 ms
53,888 KB
testcase_25 AC 43 ms
54,400 KB
testcase_26 WA -
testcase_27 AC 42 ms
54,272 KB
testcase_28 AC 41 ms
53,792 KB
testcase_29 AC 42 ms
53,888 KB
testcase_30 AC 42 ms
53,760 KB
testcase_31 AC 41 ms
54,144 KB
testcase_32 AC 42 ms
53,888 KB
testcase_33 AC 42 ms
53,888 KB
testcase_34 AC 42 ms
53,760 KB
testcase_35 AC 43 ms
53,760 KB
testcase_36 AC 42 ms
54,272 KB
testcase_37 AC 43 ms
53,632 KB
testcase_38 AC 43 ms
53,888 KB
testcase_39 AC 42 ms
53,888 KB
testcase_40 AC 43 ms
53,376 KB
testcase_41 AC 43 ms
54,528 KB
testcase_42 AC 43 ms
54,512 KB
testcase_43 AC 42 ms
54,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3

import collections
import itertools
import sys


REC_LIMIT = 10000
UNDEF = -1


def is_cww(s):
    return len(s) == 3 and "0" != s[0] and s[0] != s[1] and s[1] == s[2]


def solve(n):
    dp = collections.defaultdict(lambda: UNDEF)

    def rec(x0):
        if dp[x0] != UNDEF:
            return dp[x0]
        score = 0
        for i, j, k in itertools.combinations(range(len(x0)), 3):
            y = x0[i] + x0[j] + x0[k]
            if not is_cww(y):
                continue
            x = x0[:i] + x0[j + 1:k] + x0[k + 1:]
            score = max(score, rec(x) + int(y))
        dp[x0] = score
        return score

    return rec(str(n))


def main():
    sys.setrecursionlimit(REC_LIMIT)
    n = int(input())
    print(solve(n))


if __name__ == '__main__':
    main()
0