結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
54,784 KB
testcase_01 AC 54 ms
54,784 KB
testcase_02 AC 61 ms
62,208 KB
testcase_03 AC 51 ms
54,784 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 108 ms
77,312 KB
testcase_08 AC 71 ms
63,488 KB
testcase_09 AC 107 ms
77,460 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 53 ms
59,648 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 64 ms
63,360 KB
testcase_16 AC 99 ms
77,184 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 51 ms
54,784 KB
testcase_21 WA -
testcase_22 AC 59 ms
54,912 KB
testcase_23 AC 91 ms
74,368 KB
testcase_24 AC 51 ms
54,528 KB
testcase_25 AC 78 ms
69,120 KB
testcase_26 AC 111 ms
77,568 KB
testcase_27 AC 52 ms
54,912 KB
testcase_28 WA -
testcase_29 AC 50 ms
54,784 KB
testcase_30 AC 49 ms
54,656 KB
testcase_31 AC 51 ms
54,656 KB
testcase_32 AC 49 ms
54,656 KB
testcase_33 AC 57 ms
60,672 KB
testcase_34 AC 51 ms
54,784 KB
testcase_35 WA -
testcase_36 AC 51 ms
54,656 KB
testcase_37 AC 55 ms
54,400 KB
testcase_38 AC 55 ms
54,784 KB
testcase_39 AC 63 ms
54,784 KB
testcase_40 AC 50 ms
54,912 KB
testcase_41 WA -
testcase_42 AC 61 ms
61,696 KB
testcase_43 AC 63 ms
62,848 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[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