結果

問題 No.272 NOT回路
ユーザー gemmarogemmaro
提出日時 2020-03-30 18:26:29
言語 Elixir
(1.16.2)
結果
AC  
実行時間 538 ms / 1,000 ms
コード長 208 bytes
コンパイル時間 1,258 ms
コンパイル使用メモリ 62,380 KB
実行使用メモリ 54,276 KB
最終ジャッジ日時 2024-06-09 23:03:29
合計ジャッジ時間 8,233 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 530 ms
53,932 KB
testcase_01 AC 530 ms
54,052 KB
testcase_02 AC 527 ms
53,552 KB
testcase_03 AC 520 ms
54,060 KB
testcase_04 AC 528 ms
53,544 KB
testcase_05 AC 535 ms
53,688 KB
testcase_06 AC 538 ms
54,068 KB
testcase_07 AC 529 ms
53,924 KB
testcase_08 AC 532 ms
54,064 KB
testcase_09 AC 526 ms
53,796 KB
testcase_10 AC 528 ms
53,624 KB
testcase_11 AC 528 ms
54,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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