結果
問題 | No.1534 おなかがいたい |
ユーザー | 👑 SPD_9X2 |
提出日時 | 2021-06-06 18:52:03 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 52 ms / 2,000 ms |
コード長 | 235 bytes |
コンパイル時間 | 160 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 59,776 KB |
最終ジャッジ日時 | 2024-11-23 03:50:03 |
合計ジャッジ時間 | 2,065 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 19 |
ソースコード
S = input() ans = -1 for i in range(len(S)): if S[i:i+3] == "pon": ans += 1 if S[i:i+4] == "pain": if ans <= 0: print (-1) else: print (ans) break else: print (-1)