結果

問題 No.1534 おなかがいたい
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-08-29 10:24:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 128 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 81,832 KB
実行使用メモリ 54,592 KB
最終ジャッジ日時 2024-05-01 21:24:09
合計ジャッジ時間 2,073 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,928 KB
testcase_01 AC 35 ms
51,908 KB
testcase_02 AC 33 ms
52,692 KB
testcase_03 AC 32 ms
51,960 KB
testcase_04 AC 32 ms
51,872 KB
testcase_05 AC 35 ms
52,148 KB
testcase_06 AC 33 ms
52,908 KB
testcase_07 AC 33 ms
52,904 KB
testcase_08 AC 33 ms
52,440 KB
testcase_09 AC 32 ms
53,092 KB
testcase_10 AC 32 ms
52,564 KB
testcase_11 AC 35 ms
52,180 KB
testcase_12 AC 35 ms
54,152 KB
testcase_13 AC 35 ms
54,124 KB
testcase_14 AC 36 ms
53,928 KB
testcase_15 AC 34 ms
53,272 KB
testcase_16 AC 39 ms
52,956 KB
testcase_17 AC 39 ms
53,404 KB
testcase_18 AC 39 ms
53,872 KB
testcase_19 AC 34 ms
53,800 KB
testcase_20 AC 36 ms
54,592 KB
testcase_21 AC 33 ms
52,888 KB
testcase_22 AC 32 ms
52,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
S = s.split("pain")
if S[0].count("pon") >= 2 and "pain" in s:
    print(S[0].count("pon") - 1)
    exit()
print(-1)
0