結果

問題 No.996 Phnom Penh
ユーザー vwxyzvwxyz
提出日時 2024-07-16 23:40:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 774 ms / 2,000 ms
コード長 851 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-07-16 23:40:51
合計ジャッジ時間 7,710 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 33 ms
10,752 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 26 ms
10,624 KB
testcase_11 AC 28 ms
10,624 KB
testcase_12 AC 28 ms
10,624 KB
testcase_13 AC 672 ms
14,080 KB
testcase_14 AC 654 ms
14,080 KB
testcase_15 AC 694 ms
14,208 KB
testcase_16 AC 641 ms
14,080 KB
testcase_17 AC 679 ms
14,080 KB
testcase_18 AC 27 ms
10,624 KB
testcase_19 AC 27 ms
10,496 KB
testcase_20 AC 27 ms
10,624 KB
testcase_21 AC 27 ms
10,624 KB
testcase_22 AC 26 ms
10,496 KB
testcase_23 AC 28 ms
10,752 KB
testcase_24 AC 719 ms
13,952 KB
testcase_25 AC 774 ms
14,080 KB
testcase_26 AC 608 ms
13,952 KB
testcase_27 AC 702 ms
14,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=list(input())
def operate(S,T0,T1):
    queue=[]
    cnt=0
    for s in S:
        queue.append(s)
        while len(queue)>=len(T0) and queue[len(queue)-len(T0):]==T0:
            for _ in range(len(T0)):
                queue.pop()
            for t in T1:
                queue.append(t)
            cnt+=1
    return queue,cnt
ans=0
for _ in range(2):
    S,cnt=operate(S,list("phnom"),list("penh"))
    ans+=cnt
    if "h" in S or "e" in S:
        S,_=operate(S,["h"],[])
        S,_=operate(S,["e"],["h"])
        ans+=1
queue=[]
cnt=[]
for s in S:
    queue.append(s)
    if len(queue)>=5 and queue[-5:]==list("phnom"):
        cnt.append(1)
    elif len(queue)>=7 and queue[-7:]==list("phnomom"):
        for _ in range(2):
            queue.pop()
        cnt[-1]+=1
if cnt:
    ans+=sum(cnt)+max(cnt)+1
elif "h" in S:
    ans+=1
print(ans)
0