結果

問題 No.2076 Concon Substrings (ConVersion)
ユーザー googol_S0googol_S0
提出日時 2022-09-16 21:41:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 534 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 78,188 KB
最終ジャッジ日時 2024-06-01 12:13:01
合計ジャッジ時間 3,641 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 44 ms
52,992 KB
testcase_02 AC 44 ms
52,812 KB
testcase_03 AC 41 ms
52,608 KB
testcase_04 AC 42 ms
52,604 KB
testcase_05 AC 54 ms
62,080 KB
testcase_06 AC 46 ms
59,160 KB
testcase_07 AC 87 ms
77,032 KB
testcase_08 AC 122 ms
77,756 KB
testcase_09 AC 88 ms
77,056 KB
testcase_10 WA -
testcase_11 AC 41 ms
52,480 KB
testcase_12 AC 41 ms
52,736 KB
testcase_13 AC 40 ms
52,864 KB
testcase_14 WA -
testcase_15 AC 77 ms
76,160 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 104 ms
76,708 KB
testcase_21 AC 41 ms
52,864 KB
testcase_22 AC 92 ms
76,672 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 98 ms
76,692 KB
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,A,B=map(int,input().split())
if A>B:
  A,B=B,A
S=input()
i=0
C=[0]
while i+2<len(S):
  if S[i]=='c' and S[i+1]=='o' and S[i+2]=='n':
    C[-1]+=1
    i+=3
  else:
    C.append(0)
    i+=1
from heapq import *
Q=[(-(C[i]%B),C[i]) for i in range(len(C))]
heapify(Q)
P=sum([C[i]//B for i in range(len(C))])
ANS=0
while len(Q):
  v=heappop(Q)
  if v[1]<A:
    continue
  if P==0 and v[0]<A:
    continue
  w=-v[0]
  if w<A:
    P-=1
  w=(w-A)%B
  ANS+=1
  heappush(Q,(w,v[1]-A))
  if P>0:
    P-=1
    ANS+=1
  else:
    break
print(ANS)
0