結果

問題 No.2076 Concon Substrings (ConVersion)
ユーザー 👑 p-adicp-adic
提出日時 2023-06-11 19:22:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,083 ms / 5,000 ms
コード長 302 bytes
コンパイル時間 484 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 261,068 KB
最終ジャッジ日時 2024-06-11 01:07:20
合計ジャッジ時間 14,423 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 35 ms
52,608 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 AC 35 ms
52,352 KB
testcase_05 AC 597 ms
70,016 KB
testcase_06 AC 43 ms
62,080 KB
testcase_07 AC 1,804 ms
86,144 KB
testcase_08 AC 2,083 ms
261,068 KB
testcase_09 AC 2,032 ms
85,736 KB
testcase_10 AC 40 ms
52,096 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 AC 40 ms
52,096 KB
testcase_13 AC 40 ms
51,968 KB
testcase_14 AC 39 ms
51,968 KB
testcase_15 AC 711 ms
77,056 KB
testcase_16 AC 1,074 ms
79,744 KB
testcase_17 AC 276 ms
76,928 KB
testcase_18 AC 1,771 ms
86,144 KB
testcase_19 AC 167 ms
77,696 KB
testcase_20 AC 1,110 ms
77,696 KB
testcase_21 AC 36 ms
52,096 KB
testcase_22 AC 154 ms
76,928 KB
testcase_23 AC 78 ms
76,416 KB
testcase_24 AC 77 ms
76,928 KB
testcase_25 AC 80 ms
76,928 KB
testcase_26 AC 98 ms
76,672 KB
testcase_27 AC 114 ms
76,544 KB
testcase_28 AC 92 ms
76,800 KB
testcase_29 AC 129 ms
77,056 KB
testcase_30 AC 106 ms
77,184 KB
testcase_31 AC 40 ms
58,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R=input,range
N,A,B=map(int,I().split())
S=I()+'0'
X=[]
c=0
w="con"
for s in S:
	if s==w[c%3]:c+=1
	else:X,c=X+[c//3],s=="c"
D=[0]+[-N]*N
L=1
for x in X:
	L+=x//A
	for i in R(L,-1,-1):
		for j in R(min(x//A,i)+1):D[i]=max(D[i],(x-A*j)//B+D[i-j])
print(max([[0,i+min(i,D[i])][D[i]>i-2]for i in R(L)]))
0