結果
問題 | No.1534 おなかがいたい |
ユーザー | natoriusan |
提出日時 | 2023-08-01 16:18:42 |
言語 | F# (F# 4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 488 bytes |
コンパイル時間 | 9,322 ms |
コンパイル使用メモリ | 187,880 KB |
実行使用メモリ | 44,884 KB |
最終ジャッジ日時 | 2024-10-11 07:44:33 |
合計ジャッジ時間 | 16,654 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 327 ms
34,316 KB |
testcase_01 | AC | 329 ms
34,320 KB |
testcase_02 | AC | 61 ms
29,824 KB |
testcase_03 | AC | 331 ms
34,196 KB |
testcase_04 | AC | 328 ms
34,448 KB |
testcase_05 | AC | 329 ms
33,768 KB |
testcase_06 | AC | 61 ms
29,952 KB |
testcase_07 | AC | 334 ms
34,316 KB |
testcase_08 | AC | 328 ms
34,572 KB |
testcase_09 | AC | 330 ms
33,652 KB |
testcase_10 | AC | 60 ms
29,952 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 79 ms
38,388 KB |
testcase_14 | AC | 75 ms
38,392 KB |
testcase_15 | AC | 330 ms
35,656 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 340 ms
35,780 KB |
testcase_20 | AC | 351 ms
42,612 KB |
testcase_21 | AC | 338 ms
33,460 KB |
testcase_22 | AC | 333 ms
34,348 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (255 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/
ソースコード
let s = stdin.ReadLine () let mutable pon_count = 0 let mutable prev = 'n' 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 else match prev, s.[i] with | 'n', 'p' -> prev <- 'p' | 'p', 'o' -> prev <- 'o' | 'o', 'n' -> prev <- 'n' pon_count <- pon_count + 1 | _ -> () printfn "-1"