結果

問題 No.1256 連続整数列
ユーザー noriocnorioc
提出日時 2024-08-06 21:41:17
言語 Elixir
(1.16.2)
結果
AC  
実行時間 548 ms / 2,000 ms
コード長 325 bytes
コンパイル時間 894 ms
コンパイル使用メモリ 63,352 KB
実行使用メモリ 55,432 KB
最終ジャッジ日時 2024-08-06 21:41:37
合計ジャッジ時間 16,225 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 505 ms
54,168 KB
testcase_01 AC 507 ms
53,908 KB
testcase_02 AC 532 ms
54,856 KB
testcase_03 AC 511 ms
54,008 KB
testcase_04 AC 533 ms
54,288 KB
testcase_05 AC 509 ms
53,740 KB
testcase_06 AC 538 ms
53,988 KB
testcase_07 AC 507 ms
54,456 KB
testcase_08 AC 512 ms
54,612 KB
testcase_09 AC 534 ms
54,624 KB
testcase_10 AC 507 ms
54,116 KB
testcase_11 AC 532 ms
53,908 KB
testcase_12 AC 506 ms
54,728 KB
testcase_13 AC 505 ms
54,116 KB
testcase_14 AC 548 ms
54,152 KB
testcase_15 AC 515 ms
54,804 KB
testcase_16 AC 537 ms
54,016 KB
testcase_17 AC 506 ms
54,168 KB
testcase_18 AC 534 ms
54,176 KB
testcase_19 AC 507 ms
54,512 KB
testcase_20 AC 504 ms
54,296 KB
testcase_21 AC 538 ms
54,456 KB
testcase_22 AC 510 ms
54,272 KB
testcase_23 AC 540 ms
54,068 KB
testcase_24 AC 508 ms
55,432 KB
testcase_25 AC 506 ms
54,524 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
    a = ii()

    if a == 1 do "NO" else "YES" end
    |> IO.puts
  end
end
0