結果

問題 No.437 cwwゲーム
ユーザー 👑 KazunKazun
提出日時 2021-01-04 17:04:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 404 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,656 KB
実行使用メモリ 76,980 KB
最終ジャッジ日時 2024-10-15 02:34:24
合計ジャッジ時間 3,847 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,656 KB
testcase_01 AC 43 ms
54,400 KB
testcase_02 WA -
testcase_03 AC 45 ms
54,656 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 111 ms
76,980 KB
testcase_08 AC 46 ms
56,192 KB
testcase_09 AC 105 ms
76,928 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 43 ms
54,784 KB
testcase_13 AC 53 ms
64,384 KB
testcase_14 AC 46 ms
55,296 KB
testcase_15 AC 82 ms
76,544 KB
testcase_16 AC 49 ms
62,720 KB
testcase_17 WA -
testcase_18 AC 46 ms
56,192 KB
testcase_19 WA -
testcase_20 AC 44 ms
54,528 KB
testcase_21 WA -
testcase_22 AC 43 ms
54,528 KB
testcase_23 AC 43 ms
55,424 KB
testcase_24 AC 44 ms
54,528 KB
testcase_25 AC 50 ms
60,672 KB
testcase_26 AC 48 ms
61,568 KB
testcase_27 AC 44 ms
54,784 KB
testcase_28 AC 44 ms
54,912 KB
testcase_29 AC 45 ms
54,528 KB
testcase_30 AC 44 ms
54,528 KB
testcase_31 AC 44 ms
55,296 KB
testcase_32 AC 44 ms
54,528 KB
testcase_33 AC 46 ms
55,040 KB
testcase_34 AC 43 ms
54,400 KB
testcase_35 AC 43 ms
54,912 KB
testcase_36 AC 44 ms
54,528 KB
testcase_37 AC 43 ms
54,784 KB
testcase_38 AC 44 ms
54,528 KB
testcase_39 AC 44 ms
55,296 KB
testcase_40 AC 44 ms
54,272 KB
testcase_41 AC 45 ms
55,296 KB
testcase_42 AC 45 ms
55,424 KB
testcase_43 AC 44 ms
55,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache

@lru_cache(maxsize=10**6)
def f(L):
    X=0
    N=len(L)
    for i in range(N):
        if L[i]=="0":
            continue

        for j in range(i+1,N):
            for k in range(j+1,N):
                if L[j]==L[k]:
                    B=L[:i]+L[i+1:j]+L[j+1:k]+L[k+1:]
                    X=max(100*int(L[i])+11*int(L[j])+f(B),X)
    return X

S=input()
print(f(S))
0