結果

問題 No.2076 Concon Substrings (ConVersion)
ユーザー 👑 p-adicp-adic
提出日時 2023-06-11 19:16:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 288 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 260,736 KB
最終ジャッジ日時 2024-06-11 01:07:02
合計ジャッジ時間 15,336 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 WA -
testcase_02 AC 34 ms
52,096 KB
testcase_03 AC 34 ms
52,096 KB
testcase_04 AC 35 ms
52,096 KB
testcase_05 AC 564 ms
69,248 KB
testcase_06 AC 43 ms
61,952 KB
testcase_07 AC 1,788 ms
86,400 KB
testcase_08 AC 2,072 ms
260,736 KB
testcase_09 AC 2,161 ms
85,960 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 36 ms
52,096 KB
testcase_14 AC 36 ms
52,224 KB
testcase_15 AC 718 ms
77,312 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 170 ms
77,568 KB
testcase_20 WA -
testcase_21 AC 36 ms
52,352 KB
testcase_22 WA -
testcase_23 AC 76 ms
76,672 KB
testcase_24 AC 77 ms
76,800 KB
testcase_25 AC 79 ms
76,928 KB
testcase_26 AC 92 ms
76,672 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 119 ms
77,312 KB
testcase_31 AC 52 ms
58,880 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([i+min(i,D[i])for i in R(L)]))
0