結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー gemmarogemmaro
提出日時 2020-04-07 16:26:47
言語 Elixir
(1.16.2)
結果
AC  
実行時間 671 ms / 1,000 ms
コード長 271 bytes
コンパイル時間 1,063 ms
コンパイル使用メモリ 62,640 KB
実行使用メモリ 54,584 KB
最終ジャッジ日時 2024-06-09 23:10:00
合計ジャッジ時間 21,567 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 625 ms
53,676 KB
testcase_01 AC 629 ms
53,796 KB
testcase_02 AC 620 ms
53,688 KB
testcase_03 AC 640 ms
53,736 KB
testcase_04 AC 651 ms
54,060 KB
testcase_05 AC 625 ms
53,924 KB
testcase_06 AC 645 ms
53,932 KB
testcase_07 AC 642 ms
54,584 KB
testcase_08 AC 646 ms
54,064 KB
testcase_09 AC 646 ms
54,192 KB
testcase_10 AC 639 ms
54,148 KB
testcase_11 AC 641 ms
53,544 KB
testcase_12 AC 645 ms
53,940 KB
testcase_13 AC 651 ms
53,684 KB
testcase_14 AC 640 ms
53,552 KB
testcase_15 AC 651 ms
54,064 KB
testcase_16 AC 649 ms
53,620 KB
testcase_17 AC 632 ms
54,460 KB
testcase_18 AC 651 ms
54,156 KB
testcase_19 AC 648 ms
53,876 KB
testcase_20 AC 654 ms
53,592 KB
testcase_21 AC 647 ms
54,108 KB
testcase_22 AC 652 ms
54,060 KB
testcase_23 AC 671 ms
54,076 KB
testcase_24 AC 666 ms
53,560 KB
testcase_25 AC 658 ms
54,060 KB
testcase_26 AC 667 ms
53,964 KB
testcase_27 AC 664 ms
53,744 KB
testcase_28 AC 658 ms
53,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    c =
      IO.gets("")
      |> String.trim()

    d =
      IO.gets("")
      |> String.trim()

    (c <> d)
    |> String.split("x")
    |> Enum.map(fn i -> String.length(i) end)
    |> Enum.max(fn -> 0 end)
    |> IO.puts()
  end
end
0