結果

問題 No.272 NOT回路
ユーザー 3qvwn3qvwn
提出日時 2019-07-05 23:50:54
言語 Elixir
(1.16.2)
結果
AC  
実行時間 568 ms / 1,000 ms
コード長 173 bytes
コンパイル時間 1,077 ms
コンパイル使用メモリ 62,572 KB
実行使用メモリ 54,196 KB
最終ジャッジ日時 2024-06-09 22:54:15
合計ジャッジ時間 9,095 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 553 ms
53,548 KB
testcase_01 AC 547 ms
53,672 KB
testcase_02 AC 548 ms
53,620 KB
testcase_03 AC 552 ms
53,524 KB
testcase_04 AC 558 ms
53,552 KB
testcase_05 AC 568 ms
53,952 KB
testcase_06 AC 550 ms
53,624 KB
testcase_07 AC 540 ms
54,072 KB
testcase_08 AC 543 ms
53,860 KB
testcase_09 AC 543 ms
53,416 KB
testcase_10 AC 536 ms
53,684 KB
testcase_11 AC 538 ms
54,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do 
  def main do
    IO.gets("") |> String.trim |> String.to_integer |> out |> IO.puts
  end
  
  def out(1) do
   0
  end
   
  def out(0) do
   1
  end
end
0