結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,776 KB
testcase_01 AC 34 ms
52,704 KB
testcase_02 AC 53 ms
68,992 KB
testcase_03 AC 33 ms
53,568 KB
testcase_04 AC 34 ms
52,248 KB
testcase_05 AC 81 ms
76,308 KB
testcase_06 AC 135 ms
76,684 KB
testcase_07 AC 145 ms
77,184 KB
testcase_08 AC 137 ms
77,632 KB
testcase_09 AC 142 ms
77,060 KB
testcase_10 AC 137 ms
77,764 KB
testcase_11 AC 33 ms
52,940 KB
testcase_12 AC 40 ms
59,436 KB
testcase_13 AC 66 ms
74,596 KB
testcase_14 AC 58 ms
70,624 KB
testcase_15 AC 165 ms
78,032 KB
testcase_16 AC 39 ms
59,892 KB
testcase_17 AC 49 ms
65,344 KB
testcase_18 AC 54 ms
68,888 KB
testcase_19 WA -
testcase_20 AC 33 ms
52,496 KB
testcase_21 AC 32 ms
52,632 KB
testcase_22 AC 32 ms
52,712 KB
testcase_23 AC 33 ms
54,548 KB
testcase_24 AC 31 ms
53,100 KB
testcase_25 AC 40 ms
61,280 KB
testcase_26 AC 50 ms
66,264 KB
testcase_27 AC 32 ms
52,640 KB
testcase_28 AC 32 ms
52,556 KB
testcase_29 AC 32 ms
53,028 KB
testcase_30 AC 33 ms
53,520 KB
testcase_31 AC 33 ms
52,812 KB
testcase_32 AC 33 ms
51,896 KB
testcase_33 AC 48 ms
65,480 KB
testcase_34 AC 32 ms
52,464 KB
testcase_35 AC 33 ms
52,676 KB
testcase_36 AC 32 ms
52,364 KB
testcase_37 AC 34 ms
52,488 KB
testcase_38 AC 32 ms
52,676 KB
testcase_39 AC 32 ms
52,740 KB
testcase_40 AC 33 ms
53,524 KB
testcase_41 AC 45 ms
63,964 KB
testcase_42 AC 37 ms
59,696 KB
testcase_43 AC 41 ms
61,636 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:
				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