結果

問題 No.1534 おなかがいたい
ユーザー ygd.ygd.
提出日時 2021-06-09 20:59:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 632 bytes
コンパイル時間 981 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,652 KB
最終ジャッジ日時 2024-05-06 14:14:10
合計ジャッジ時間 2,826 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 26 ms
10,496 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 27 ms
10,496 KB
testcase_11 AC 27 ms
10,624 KB
testcase_12 AC 99 ms
12,524 KB
testcase_13 AC 85 ms
12,652 KB
testcase_14 AC 81 ms
12,524 KB
testcase_15 WA -
testcase_16 AC 113 ms
12,524 KB
testcase_17 AC 109 ms
12,524 KB
testcase_18 AC 109 ms
12,524 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 28 ms
10,624 KB
testcase_22 AC 27 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    s = str(input())
    n = len(s)
    stack = []
    Flag = 0
    for i in range(n):
        if i+4 <= n and s[i:i+4] == "pain":
            Flag = 1
            break
        else:
            stack.append(s[i])
    #print(stack)
    if Flag == 0:
        print(-1);exit()
    ans = 0
    while len(stack) >= 3:
        if stack[-3] == "p" and stack[-2] == "o" and stack[-1] == "n":
            ans += 1
            stack.pop()
            stack.pop()
            stack.pop()
        else:
            stack.pop()
    if ans >= 2:
        print(ans-1)
    else:
        print(0)

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