結果

問題 No.1591 Two Digits
ユーザー DieGoDieGo
提出日時 2021-07-14 12:52:18
言語 Elixir
(1.16.2)
結果
AC  
実行時間 578 ms / 1,000 ms
コード長 191 bytes
コンパイル時間 4,198 ms
コンパイル使用メモリ 61,808 KB
実行使用メモリ 54,412 KB
最終ジャッジ日時 2024-07-03 12:24:49
合計ジャッジ時間 16,275 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 578 ms
53,744 KB
testcase_01 AC 568 ms
54,296 KB
testcase_02 AC 548 ms
53,908 KB
testcase_03 AC 571 ms
53,976 KB
testcase_04 AC 556 ms
54,268 KB
testcase_05 AC 572 ms
53,688 KB
testcase_06 AC 551 ms
53,752 KB
testcase_07 AC 549 ms
53,616 KB
testcase_08 AC 568 ms
53,560 KB
testcase_09 AC 575 ms
53,928 KB
testcase_10 AC 569 ms
53,808 KB
testcase_11 AC 566 ms
53,684 KB
testcase_12 AC 555 ms
54,300 KB
testcase_13 AC 558 ms
53,980 KB
testcase_14 AC 575 ms
54,412 KB
testcase_15 AC 576 ms
53,948 KB
testcase_16 AC 568 ms
53,900 KB
testcase_17 AC 563 ms
53,732 KB
testcase_18 AC 553 ms
53,944 KB
testcase_19 AC 559 ms
53,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    n = IO.read(:line) |> String.trim |> String.to_integer

    cond do
      9 < n and n < 100  -> IO.puts "Yes"
      true -> IO.puts "No"
    end
  end
end
0