結果

問題 No.1534 おなかがいたい
ユーザー トミートミー
提出日時 2024-04-13 17:32:13
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 386 bytes
コンパイル時間 1,147 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 261,560 KB
最終ジャッジ日時 2024-10-03 00:18:42
合計ジャッジ時間 6,855 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,012 KB
testcase_01 AC 34 ms
52,604 KB
testcase_02 AC 30 ms
53,444 KB
testcase_03 AC 31 ms
52,376 KB
testcase_04 AC 30 ms
52,736 KB
testcase_05 AC 30 ms
52,424 KB
testcase_06 AC 31 ms
52,208 KB
testcase_07 AC 30 ms
53,228 KB
testcase_08 AC 31 ms
52,316 KB
testcase_09 AC 32 ms
51,496 KB
testcase_10 AC 31 ms
52,172 KB
testcase_11 AC 29 ms
51,996 KB
testcase_12 TLE -
testcase_13 AC 33 ms
52,944 KB
testcase_14 AC 32 ms
54,532 KB
testcase_15 AC 31 ms
53,536 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 35 ms
53,736 KB
testcase_20 TLE -
testcase_21 AC 33 ms
52,564 KB
testcase_22 AC 31 ms
53,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    s = input()
    if s.find("pain") == -1:
        print(-1)
        exit()
    cnt = 0
    while True:
        if s[0:4] == "pain":
            break
        
        if s[0:3] == "pon":
            s = s[3:]
            cnt += 1
        else:
            s = s[1:]
        
    result = -1 if cnt < 2 else cnt-1
    print(result)


if __name__ == "__main__":
    main()
0