結果

問題 No.996 Phnom Penh
ユーザー titiatitia
提出日時 2020-04-08 04:01:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 760 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,556 KB
最終ジャッジ日時 2024-07-16 02:24:55
合計ジャッジ時間 9,570 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 29 ms
10,624 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 26 ms
10,752 KB
testcase_20 AC 25 ms
10,624 KB
testcase_21 AC 27 ms
10,752 KB
testcase_22 AC 27 ms
10,752 KB
testcase_23 AC 29 ms
10,624 KB
testcase_24 WA -
testcase_25 AC 1,227 ms
11,492 KB
testcase_26 AC 801 ms
11,544 KB
testcase_27 AC 774 ms
11,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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==[]:
    ANS=0
else:
    ANS=max(L)+sum(L)+1

T=""
for s in S:
    if s=="h":
        continue
    if s=="e":
        T+="h"
    else:
        T+=s

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

    if L==[]:
        if "h" in T:
            ANS2=2
        else:
            ANS2=1
        
    else:
        ANS2=max(L)+sum(L)+2

    print(max(ANS,ANS2))
0