結果

問題 No.437 cwwゲーム
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-04 10:53:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 591 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 77,972 KB
最終ジャッジ日時 2024-10-04 10:53:43
合計ジャッジ時間 3,729 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,404 KB
testcase_01 AC 33 ms
53,040 KB
testcase_02 AC 54 ms
68,140 KB
testcase_03 AC 33 ms
52,516 KB
testcase_04 AC 33 ms
52,752 KB
testcase_05 AC 39 ms
60,536 KB
testcase_06 AC 67 ms
74,016 KB
testcase_07 AC 139 ms
77,408 KB
testcase_08 AC 93 ms
76,004 KB
testcase_09 AC 141 ms
77,180 KB
testcase_10 AC 136 ms
77,524 KB
testcase_11 AC 32 ms
53,412 KB
testcase_12 AC 32 ms
53,760 KB
testcase_13 AC 66 ms
74,736 KB
testcase_14 AC 58 ms
71,060 KB
testcase_15 AC 162 ms
77,972 KB
testcase_16 AC 39 ms
59,688 KB
testcase_17 AC 52 ms
64,580 KB
testcase_18 AC 54 ms
68,088 KB
testcase_19 AC 35 ms
52,600 KB
testcase_20 AC 36 ms
52,556 KB
testcase_21 AC 35 ms
52,348 KB
testcase_22 AC 32 ms
53,376 KB
testcase_23 AC 32 ms
53,624 KB
testcase_24 AC 33 ms
53,048 KB
testcase_25 AC 42 ms
61,952 KB
testcase_26 AC 52 ms
66,244 KB
testcase_27 AC 33 ms
52,808 KB
testcase_28 AC 33 ms
52,568 KB
testcase_29 AC 33 ms
51,940 KB
testcase_30 AC 32 ms
52,152 KB
testcase_31 AC 33 ms
52,552 KB
testcase_32 AC 33 ms
52,872 KB
testcase_33 AC 46 ms
64,840 KB
testcase_34 AC 34 ms
52,492 KB
testcase_35 AC 34 ms
53,284 KB
testcase_36 AC 33 ms
53,760 KB
testcase_37 AC 32 ms
52,900 KB
testcase_38 AC 34 ms
52,212 KB
testcase_39 AC 33 ms
51,944 KB
testcase_40 AC 33 ms
52,284 KB
testcase_41 AC 50 ms
63,988 KB
testcase_42 AC 40 ms
62,196 KB
testcase_43 AC 40 ms
61,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=list(map(int,input()))
n=len(N)

def solve(i,p):
	global a,A
	if p==1:
		for j in range(i+1,n):
			if v[j]==0 and N[j]!=N[i]:
				v[j]=1
				a+=N[j]*10
				solve(j,2)
				a-=N[j]*10
		v[i]=0
	if p==2:
		for j in range(i+1,n):
			if v[j]==0 and N[j]==N[i]:
				v[j]=1
				a+=N[j]*1
				solve(j,3)
				a-=N[j]*1
		v[i]=0
	if p==3:
		A=max(A,a)
		for j in range(n):
			if v[j]==0 and N[j]!=0:
				v[j]=1
				a+=N[j]*100
				solve(j,1)
				a-=N[j]*100
		v[i]=0
	return

a=0
A=0
v=[0]*n
v[0]=1
for i in range(n):
	if N[i]!=0:
		v[i]=1
		a+=N[i]*100
		solve(i,1)
		a-=N[i]*100
		v[i]=0

print(A)
0