結果

問題 No.1534 おなかがいたい
ユーザー natoriusannatoriusan
提出日時 2023-08-01 16:20:58
言語 F#
(F# 4.0)
結果
AC  
実行時間 358 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 7,919 ms
コンパイル使用メモリ 185,172 KB
実行使用メモリ 49,244 KB
最終ジャッジ日時 2024-10-11 07:47:17
合計ジャッジ時間 15,600 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 331 ms
34,324 KB
testcase_01 AC 330 ms
34,048 KB
testcase_02 AC 61 ms
29,952 KB
testcase_03 AC 330 ms
34,472 KB
testcase_04 AC 327 ms
34,580 KB
testcase_05 AC 331 ms
33,660 KB
testcase_06 AC 60 ms
29,952 KB
testcase_07 AC 332 ms
34,500 KB
testcase_08 AC 330 ms
34,580 KB
testcase_09 AC 322 ms
34,424 KB
testcase_10 AC 61 ms
30,080 KB
testcase_11 AC 333 ms
34,708 KB
testcase_12 AC 354 ms
47,172 KB
testcase_13 AC 83 ms
44,792 KB
testcase_14 AC 84 ms
44,544 KB
testcase_15 AC 332 ms
34,992 KB
testcase_16 AC 355 ms
49,244 KB
testcase_17 AC 358 ms
49,244 KB
testcase_18 AC 357 ms
49,104 KB
testcase_19 AC 328 ms
36,036 KB
testcase_20 AC 350 ms
48,392 KB
testcase_21 AC 334 ms
34,452 KB
testcase_22 AC 327 ms
34,592 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (248 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

let s = stdin.ReadLine ()

let mutable pon_count = 0
for i in 0..s.Length-1 do
    if s.[i..i+3] = "pain" then
        printfn "%d" (if pon_count < 2 then -1 else pon_count - 1)
        exit 0
    elif s.[i..i+2] = "pon" then
        pon_count <- pon_count + 1
            
printfn "-1"
0