結果

問題 No.437 cwwゲーム
ユーザー ntudantuda
提出日時 2024-11-21 22:15:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 559 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-11-21 22:15:16
合計ジャッジ時間 4,019 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,528 KB
testcase_01 AC 47 ms
54,912 KB
testcase_02 AC 55 ms
62,336 KB
testcase_03 AC 46 ms
54,784 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 94 ms
77,364 KB
testcase_08 AC 56 ms
63,744 KB
testcase_09 AC 94 ms
77,568 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 49 ms
59,648 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 56 ms
64,000 KB
testcase_16 AC 83 ms
77,184 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 45 ms
55,040 KB
testcase_21 WA -
testcase_22 AC 48 ms
55,168 KB
testcase_23 AC 88 ms
75,264 KB
testcase_24 AC 48 ms
55,168 KB
testcase_25 AC 67 ms
69,504 KB
testcase_26 AC 92 ms
77,300 KB
testcase_27 AC 45 ms
54,912 KB
testcase_28 WA -
testcase_29 AC 45 ms
54,784 KB
testcase_30 AC 47 ms
55,008 KB
testcase_31 AC 46 ms
54,784 KB
testcase_32 AC 45 ms
54,656 KB
testcase_33 AC 49 ms
61,312 KB
testcase_34 AC 46 ms
55,296 KB
testcase_35 WA -
testcase_36 AC 47 ms
54,528 KB
testcase_37 AC 46 ms
54,912 KB
testcase_38 AC 46 ms
54,912 KB
testcase_39 AC 46 ms
55,040 KB
testcase_40 AC 46 ms
54,912 KB
testcase_41 WA -
testcase_42 AC 52 ms
62,080 KB
testcase_43 AC 54 ms
63,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A = tuple([int(s) for s in input()])
from functools import lru_cache
@lru_cache(maxsize=1000000)
def f(X):
    N = len(X)
    if N < 3:
        return 0
    ret = 0
    Y1 = list(X)
    Y1.pop(0)
    for i in range(1, N - 1):
        Y2 = Y1[:]
        Y2.pop(i - 1)
        for j in range(i + 1, N):
            Y3 = Y2[:]
            Y3.pop(j - 2)
            tmp = 0
            if X[0] != 0 and X[i] == X[j]:
                tmp += X[0] * 100 + X[i] * 10 + X[i]
            tmp += f(tuple(Y3))
            ret = max(ret, tmp)
    return ret


print(f(A))
0