結果

問題 No.4 おもりと天秤
ユーザー 3qvwn3qvwn
提出日時 2019-07-05 23:48:22
言語 Elixir
(1.16.2)
結果
WA  
実行時間 -
コード長 547 bytes
コンパイル時間 1,173 ms
コンパイル使用メモリ 62,324 KB
実行使用メモリ 54,540 KB
最終ジャッジ日時 2024-06-09 22:53:48
合計ジャッジ時間 14,429 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 525 ms
53,932 KB
testcase_01 AC 528 ms
53,940 KB
testcase_02 AC 525 ms
54,184 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 533 ms
53,796 KB
testcase_06 AC 521 ms
53,880 KB
testcase_07 AC 525 ms
53,780 KB
testcase_08 AC 523 ms
54,064 KB
testcase_09 AC 524 ms
53,624 KB
testcase_10 AC 527 ms
53,928 KB
testcase_11 AC 526 ms
54,540 KB
testcase_12 AC 523 ms
54,292 KB
testcase_13 AC 521 ms
53,544 KB
testcase_14 AC 531 ms
53,816 KB
testcase_15 AC 543 ms
54,412 KB
testcase_16 AC 534 ms
53,664 KB
testcase_17 WA -
testcase_18 AC 526 ms
53,672 KB
testcase_19 AC 534 ms
53,440 KB
testcase_20 AC 526 ms
54,056 KB
testcase_21 AC 526 ms
53,592 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do 
  def main do
    _ = IO.gets("")
    IO.gets("") |> String.trim |> String.split |> Enum.map(&String.to_integer/1) |> Enum.sort(&(&1 >= &2)) |> put_on(0,0) |> out |> IO.puts
  end
  
  def put_on([], left, right) do
    [left, right]
  end
  
  def put_on([head|tail], left, right) when left >= right do
    put_on(tail, left, right+head)
  end
  
  def put_on([head|tail], left, right) do
    put_on(tail, left+head, right)
  end
  
  def out([left, right]) do
    if left == right, do: "possible", else: "impossible"
  end
end
0