結果

問題 No.437 cwwゲーム
ユーザー 👑 KazunKazun
提出日時 2021-01-04 17:16:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 71,936 KB
最終ジャッジ日時 2024-10-15 02:44:46
合計ジャッジ時間 3,580 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,656 KB
testcase_01 AC 49 ms
54,572 KB
testcase_02 AC 52 ms
62,208 KB
testcase_03 AC 45 ms
54,912 KB
testcase_04 AC 45 ms
55,040 KB
testcase_05 AC 47 ms
55,168 KB
testcase_06 AC 51 ms
62,336 KB
testcase_07 AC 71 ms
71,808 KB
testcase_08 AC 53 ms
56,192 KB
testcase_09 AC 74 ms
71,936 KB
testcase_10 AC 56 ms
64,768 KB
testcase_11 AC 45 ms
55,424 KB
testcase_12 AC 46 ms
55,040 KB
testcase_13 AC 47 ms
55,168 KB
testcase_14 AC 48 ms
55,680 KB
testcase_15 AC 58 ms
65,664 KB
testcase_16 AC 50 ms
61,440 KB
testcase_17 AC 46 ms
55,168 KB
testcase_18 AC 47 ms
55,552 KB
testcase_19 AC 46 ms
54,912 KB
testcase_20 AC 47 ms
54,528 KB
testcase_21 AC 46 ms
54,528 KB
testcase_22 AC 47 ms
54,784 KB
testcase_23 AC 46 ms
55,168 KB
testcase_24 AC 46 ms
54,144 KB
testcase_25 AC 47 ms
55,936 KB
testcase_26 AC 49 ms
61,056 KB
testcase_27 AC 49 ms
54,912 KB
testcase_28 AC 46 ms
55,040 KB
testcase_29 AC 45 ms
54,528 KB
testcase_30 AC 44 ms
54,400 KB
testcase_31 AC 45 ms
54,784 KB
testcase_32 AC 44 ms
54,656 KB
testcase_33 AC 45 ms
55,040 KB
testcase_34 AC 44 ms
54,528 KB
testcase_35 AC 46 ms
55,040 KB
testcase_36 AC 44 ms
54,912 KB
testcase_37 AC 45 ms
54,528 KB
testcase_38 AC 47 ms
54,528 KB
testcase_39 AC 45 ms
54,528 KB
testcase_40 AC 46 ms
54,144 KB
testcase_41 AC 47 ms
55,168 KB
testcase_42 AC 46 ms
55,168 KB
testcase_43 AC 46 ms
54,912 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] and L[i]!=L[j]:
                    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