結果

問題 No.2599 Summer Project
ユーザー noriocnorioc
提出日時 2024-08-21 02:34:50
言語 Elixir
(1.16.2)
結果
AC  
実行時間 653 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 8,818 ms
コンパイル使用メモリ 62,084 KB
実行使用メモリ 54,504 KB
最終ジャッジ日時 2024-08-21 02:35:10
合計ジャッジ時間 8,099 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 628 ms
53,868 KB
testcase_01 AC 653 ms
53,848 KB
testcase_02 AC 622 ms
54,124 KB
testcase_03 AC 647 ms
54,504 KB
testcase_04 AC 623 ms
53,612 KB
testcase_05 AC 645 ms
54,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def input, do: IO.read(:line) |> String.trim
  def ii, do: input() |> String.to_integer
  def li, do: input() |> String.split |> Enum.map(&String.to_integer/1)
  def yn(b), do: IO.puts(if b, do: "Yes", else: "No")

  def main do
    s = input()
    t = input()

    ["watermelon", "beachball", "shrinebell"] -- [s, t]
    |> IO.puts
  end
end
0