結果

問題 No.4 おもりと天秤
ユーザー 3qvwn3qvwn
提出日時 2019-07-05 23:48:22
言語 Elixir
(1.18.1)
結果
WA  
実行時間 -
コード長 547 bytes
コンパイル時間 908 ms
コンパイル使用メモリ 62,868 KB
実行使用メモリ 56,648 KB
最終ジャッジ日時 2024-12-31 03:21:25
合計ジャッジ時間 14,936 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 533 ms
56,648 KB
testcase_01 AC 533 ms
53,912 KB
testcase_02 AC 530 ms
54,592 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 543 ms
54,128 KB
testcase_06 AC 540 ms
54,436 KB
testcase_07 AC 535 ms
54,040 KB
testcase_08 AC 534 ms
54,316 KB
testcase_09 AC 536 ms
54,104 KB
testcase_10 AC 537 ms
54,276 KB
testcase_11 AC 525 ms
53,864 KB
testcase_12 AC 528 ms
55,716 KB
testcase_13 AC 532 ms
54,244 KB
testcase_14 AC 534 ms
54,820 KB
testcase_15 AC 530 ms
54,124 KB
testcase_16 AC 548 ms
54,272 KB
testcase_17 WA -
testcase_18 AC 535 ms
54,524 KB
testcase_19 AC 543 ms
53,784 KB
testcase_20 AC 550 ms
54,104 KB
testcase_21 AC 590 ms
54,000 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