結果

問題 No.341 沈黙の期間
ユーザー ichibanshiboriichibanshibori
提出日時 2016-05-14 22:35:08
言語 F#
(F# 4.0)
結果
AC  
実行時間 338 ms / 5,000 ms
コード長 225 bytes
コンパイル時間 9,242 ms
コンパイル使用メモリ 186,368 KB
実行使用メモリ 36,228 KB
最終ジャッジ日時 2024-10-06 02:50:45
合計ジャッジ時間 15,254 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 338 ms
35,720 KB
testcase_01 AC 335 ms
36,228 KB
testcase_02 AC 324 ms
35,848 KB
testcase_03 AC 331 ms
35,720 KB
testcase_04 AC 327 ms
35,724 KB
testcase_05 AC 331 ms
35,712 KB
testcase_06 AC 330 ms
35,716 KB
testcase_07 AC 317 ms
35,464 KB
testcase_08 AC 324 ms
35,980 KB
testcase_09 AC 331 ms
35,564 KB
testcase_10 AC 334 ms
35,968 KB
testcase_11 AC 333 ms
35,332 KB
testcase_12 AC 331 ms
35,840 KB
testcase_13 AC 332 ms
35,716 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (241 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 #

open System.Text.RegularExpressions

let P = new Regex("…+")
let S = stdin.ReadLine ()
let mSeq = P.Matches(S) |> Seq.cast<Match> |> Seq.map (fun m -> m.Length)
(if Seq.isEmpty mSeq then 0 else Seq.max mSeq) |> printfn "%d"
0