結果

問題 No.437 cwwゲーム
ユーザー NoaSaberNoaSaber
提出日時 2021-03-14 10:53:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 548 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,140 KB
最終ジャッジ日時 2024-10-15 20:08:03
合計ジャッジ時間 5,144 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,376 KB
testcase_01 AC 46 ms
53,376 KB
testcase_02 AC 97 ms
76,928 KB
testcase_03 AC 46 ms
53,888 KB
testcase_04 AC 46 ms
53,632 KB
testcase_05 AC 133 ms
77,580 KB
testcase_06 AC 186 ms
77,812 KB
testcase_07 AC 184 ms
77,676 KB
testcase_08 AC 162 ms
77,800 KB
testcase_09 AC 185 ms
77,668 KB
testcase_10 AC 164 ms
77,800 KB
testcase_11 AC 47 ms
53,504 KB
testcase_12 AC 57 ms
61,696 KB
testcase_13 AC 96 ms
76,544 KB
testcase_14 AC 106 ms
76,800 KB
testcase_15 AC 214 ms
78,140 KB
testcase_16 AC 48 ms
53,760 KB
testcase_17 AC 67 ms
65,152 KB
testcase_18 AC 85 ms
72,576 KB
testcase_19 WA -
testcase_20 AC 47 ms
53,760 KB
testcase_21 AC 46 ms
53,248 KB
testcase_22 AC 47 ms
53,504 KB
testcase_23 AC 47 ms
53,504 KB
testcase_24 AC 46 ms
53,120 KB
testcase_25 AC 50 ms
54,784 KB
testcase_26 AC 56 ms
61,568 KB
testcase_27 AC 46 ms
53,248 KB
testcase_28 AC 47 ms
53,248 KB
testcase_29 AC 46 ms
53,120 KB
testcase_30 AC 46 ms
53,120 KB
testcase_31 AC 46 ms
53,376 KB
testcase_32 AC 46 ms
53,120 KB
testcase_33 AC 65 ms
65,024 KB
testcase_34 AC 47 ms
53,376 KB
testcase_35 AC 49 ms
53,504 KB
testcase_36 AC 47 ms
53,376 KB
testcase_37 AC 48 ms
53,120 KB
testcase_38 AC 46 ms
53,248 KB
testcase_39 AC 46 ms
52,992 KB
testcase_40 AC 46 ms
53,376 KB
testcase_41 AC 56 ms
60,800 KB
testcase_42 AC 56 ms
60,928 KB
testcase_43 AC 53 ms
59,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=input()
pt=[]
for i in range(len(N)):
    for j in range(i+1,len(N)):
        for k in range(j+1,len(N)):
            if N[i]!=N[j] and N[j]==N[k]:
                pt.append((i,j,k))
from copy import deepcopy
def ans(his,nu):
    if his.count(0)<3:
        return nu
    maximum=nu
    for i,j,k in pt:
        if all([his[i]==0,his[j]==0,his[k]==0]):
            his_c=deepcopy(his)
            his_c[i]=1;his_c[j]=1;his_c[k]=1
            maximum=max(maximum,ans(his_c,nu+int(N[i])*100+int(N[j])*11))
    return maximum
print(ans([0]*len(N),0))
0