結果

問題 No.437 cwwゲーム
ユーザー H20H20
提出日時 2021-08-26 11:44:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 661 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 81,676 KB
実行使用メモリ 76,136 KB
最終ジャッジ日時 2024-11-18 08:51:24
合計ジャッジ時間 3,454 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,316 KB
testcase_01 AC 32 ms
52,472 KB
testcase_02 AC 47 ms
64,696 KB
testcase_03 AC 35 ms
53,196 KB
testcase_04 AC 33 ms
52,124 KB
testcase_05 AC 40 ms
62,440 KB
testcase_06 AC 58 ms
70,916 KB
testcase_07 AC 76 ms
75,916 KB
testcase_08 AC 63 ms
73,760 KB
testcase_09 AC 75 ms
75,588 KB
testcase_10 AC 81 ms
76,136 KB
testcase_11 AC 33 ms
52,156 KB
testcase_12 AC 40 ms
61,900 KB
testcase_13 AC 51 ms
66,820 KB
testcase_14 AC 48 ms
66,176 KB
testcase_15 AC 77 ms
76,092 KB
testcase_16 AC 37 ms
59,204 KB
testcase_17 AC 36 ms
59,468 KB
testcase_18 AC 39 ms
61,920 KB
testcase_19 AC 32 ms
52,488 KB
testcase_20 AC 32 ms
53,004 KB
testcase_21 AC 33 ms
52,444 KB
testcase_22 AC 31 ms
52,828 KB
testcase_23 AC 34 ms
52,548 KB
testcase_24 AC 33 ms
52,784 KB
testcase_25 AC 37 ms
59,460 KB
testcase_26 AC 36 ms
59,096 KB
testcase_27 AC 33 ms
52,276 KB
testcase_28 AC 33 ms
52,204 KB
testcase_29 AC 32 ms
52,140 KB
testcase_30 AC 32 ms
53,764 KB
testcase_31 AC 32 ms
53,124 KB
testcase_32 AC 32 ms
53,056 KB
testcase_33 AC 38 ms
60,124 KB
testcase_34 AC 32 ms
53,104 KB
testcase_35 AC 32 ms
52,144 KB
testcase_36 AC 31 ms
52,068 KB
testcase_37 AC 31 ms
53,416 KB
testcase_38 AC 32 ms
52,208 KB
testcase_39 AC 31 ms
52,140 KB
testcase_40 AC 32 ms
53,284 KB
testcase_41 AC 32 ms
54,012 KB
testcase_42 AC 34 ms
53,716 KB
testcase_43 AC 34 ms
53,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 9) #再帰回数の限界を変更
ans = 0
def dfs(A,v):
    global ans
    if len(A) < 3:
        return
    for i in range(len(A)):        
        for j in range(i+1,len(A)):
            for k in range(j+1,len(A)):
                if A[i]!=0 and A[i]!=A[j] and A[j]==A[k]:
                    ans = max(v+A[i]*100+A[j]*11,ans)
                    AD = []
                    for m in range(len(A)):
                        if m!=i and m!=j and m!=k:
                            AD.append(A[m])
                    dfs(AD,v+A[i]*100+A[j]*11)

N = list(input())
L = []
for n in N:
    L.append(int(n))
dfs(L,0)
print(ans)
0