結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー regeregeregerege
提出日時 2017-04-18 21:19:26
言語 F#
(F# 4.0)
結果
AC  
実行時間 314 ms / 1,000 ms
コード長 111 bytes
コンパイル時間 13,582 ms
コンパイル使用メモリ 183,848 KB
実行使用メモリ 34,656 KB
最終ジャッジ日時 2024-11-18 10:13:04
合計ジャッジ時間 20,078 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 302 ms
33,464 KB
testcase_01 AC 305 ms
34,264 KB
testcase_02 AC 306 ms
33,976 KB
testcase_03 AC 302 ms
33,688 KB
testcase_04 AC 301 ms
33,624 KB
testcase_05 AC 307 ms
34,532 KB
testcase_06 AC 304 ms
34,396 KB
testcase_07 AC 304 ms
34,348 KB
testcase_08 AC 305 ms
34,516 KB
testcase_09 AC 307 ms
34,528 KB
testcase_10 AC 309 ms
33,972 KB
testcase_11 AC 307 ms
34,476 KB
testcase_12 AC 307 ms
34,352 KB
testcase_13 AC 306 ms
34,356 KB
testcase_14 AC 308 ms
34,500 KB
testcase_15 AC 306 ms
34,332 KB
testcase_16 AC 313 ms
34,368 KB
testcase_17 AC 306 ms
34,520 KB
testcase_18 AC 304 ms
33,468 KB
testcase_19 AC 306 ms
34,268 KB
testcase_20 AC 307 ms
34,384 KB
testcase_21 AC 307 ms
33,592 KB
testcase_22 AC 314 ms
34,656 KB
testcase_23 AC 307 ms
34,520 KB
testcase_24 AC 311 ms
34,368 KB
testcase_25 AC 307 ms
34,348 KB
testcase_26 AC 302 ms
34,272 KB
testcase_27 AC 305 ms
34,368 KB
testcase_28 AC 303 ms
34,392 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (302 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() + stdin.ReadLine()
s.Split('x') |> Array.map (Seq.length) |> Array.max
|> printfn "%d"
0