結果

問題 No.996 Phnom Penh
ユーザー titiatitia
提出日時 2020-04-08 05:29:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 848 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,320 KB
最終ジャッジ日時 2024-07-16 04:15:51
合計ジャッジ時間 3,962 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 28 ms
10,624 KB
testcase_11 AC 28 ms
10,624 KB
testcase_12 AC 28 ms
10,624 KB
testcase_13 AC 272 ms
11,136 KB
testcase_14 AC 279 ms
11,008 KB
testcase_15 AC 282 ms
11,136 KB
testcase_16 AC 265 ms
11,064 KB
testcase_17 AC 270 ms
11,136 KB
testcase_18 AC 29 ms
10,752 KB
testcase_19 AC 28 ms
10,624 KB
testcase_20 AC 27 ms
10,624 KB
testcase_21 AC 27 ms
10,624 KB
testcase_22 AC 27 ms
10,624 KB
testcase_23 AC 27 ms
10,624 KB
testcase_24 AC 295 ms
11,320 KB
testcase_25 AC 218 ms
11,320 KB
testcase_26 AC 159 ms
11,064 KB
testcase_27 AC 203 ms
11,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
S+="z"*100

def ope1(SCORE,S):
    T=""
    i=0
    while i<len(S):
        if S[i:i+5]=="phnom":
            T+="pehn"
            i+=5
            SCORE+=1
        else:
            T+=S[i]
            i+=1
    return SCORE,T

def ope2(SCORE,S):
    T=""
    for s in S:
        if s=="h":
            continue
        if s=="e":
            T+="h"
        else:
            T+=s
    if S==T:
        return SCORE,S
    else:
        return SCORE+1,T
    
SCORE=0
SCORE,S=ope1(SCORE,S)
SCORE,S=ope2(SCORE,S)
SCORE,S=ope1(SCORE,S)
SCORE,S=ope2(SCORE,S)
SCORE,S=ope1(SCORE,S)
SCORE,S=ope2(SCORE,S)

LEN=len(S)

L=[]
for i in range(LEN):
    if S[i:i+3]=="phn":
        s=0
        j=i+3
        while S[j:j+2]=="om":
            s+=1
            j+=2
        L.append(s)

if L==[]:
    print(SCORE)
else:
    print(SCORE+max(L)+sum(L)+1)
0