結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー chike_pluschike_plus
提出日時 2019-03-28 13:52:24
言語 F#
(F# 4.0)
結果
AC  
実行時間 54 ms / 1,000 ms
コード長 266 bytes
コンパイル時間 7,242 ms
コンパイル使用メモリ 187,092 KB
実行使用メモリ 30,900 KB
最終ジャッジ日時 2024-11-18 10:39:58
合計ジャッジ時間 9,831 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 29
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (263 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 ``No.203 ゴールデン・ウィーク(1)``() =

  let w1 = stdin.ReadLine()
  let w2 = stdin.ReadLine()

  (w1 + w2).Split( 'x')
  |> Array.maxBy (fun x -> x.Length)
  |> fun s -> s.Length |> stdout.WriteLine
  ()
``No.203 ゴールデン・ウィーク(1)``()
0