結果

問題 No.437 cwwゲーム
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-04 10:50:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 582 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 78,644 KB
最終ジャッジ日時 2024-10-04 10:50:20
合計ジャッジ時間 3,811 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 35 ms
53,136 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 34 ms
52,068 KB
testcase_05 AC 82 ms
76,824 KB
testcase_06 AC 133 ms
76,488 KB
testcase_07 WA -
testcase_08 AC 142 ms
77,276 KB
testcase_09 WA -
testcase_10 AC 142 ms
78,112 KB
testcase_11 AC 34 ms
53,564 KB
testcase_12 AC 39 ms
59,212 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 36 ms
52,424 KB
testcase_21 AC 34 ms
52,604 KB
testcase_22 WA -
testcase_23 AC 34 ms
52,624 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 33 ms
53,088 KB
testcase_28 WA -
testcase_29 AC 35 ms
53,616 KB
testcase_30 AC 37 ms
52,312 KB
testcase_31 AC 35 ms
52,884 KB
testcase_32 AC 35 ms
52,760 KB
testcase_33 AC 51 ms
65,464 KB
testcase_34 AC 35 ms
51,812 KB
testcase_35 WA -
testcase_36 AC 43 ms
52,832 KB
testcase_37 AC 33 ms
52,064 KB
testcase_38 AC 34 ms
52,068 KB
testcase_39 AC 34 ms
52,200 KB
testcase_40 AC 34 ms
52,424 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

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:
				v[j]=1
				a+=N[j]*100
				solve(j,1)
				a-=N[j]*100
		a-=N[i]*1
		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

print(A)
0