結果

問題 No.1591 Two Digits
ユーザー DieGoDieGo
提出日時 2021-07-14 12:52:18
言語 Elixir
(1.16.2)
結果
AC  
実行時間 567 ms / 1,000 ms
コード長 191 bytes
コンパイル時間 884 ms
コンパイル使用メモリ 54,692 KB
実行使用メモリ 50,104 KB
最終ジャッジ日時 2023-09-16 11:37:51
合計ジャッジ時間 13,096 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 534 ms
50,104 KB
testcase_01 AC 539 ms
49,196 KB
testcase_02 AC 549 ms
49,712 KB
testcase_03 AC 544 ms
49,260 KB
testcase_04 AC 567 ms
49,200 KB
testcase_05 AC 540 ms
49,688 KB
testcase_06 AC 537 ms
49,236 KB
testcase_07 AC 544 ms
49,380 KB
testcase_08 AC 551 ms
49,808 KB
testcase_09 AC 548 ms
49,096 KB
testcase_10 AC 545 ms
49,908 KB
testcase_11 AC 543 ms
49,124 KB
testcase_12 AC 541 ms
49,312 KB
testcase_13 AC 549 ms
49,944 KB
testcase_14 AC 541 ms
49,196 KB
testcase_15 AC 541 ms
49,868 KB
testcase_16 AC 541 ms
49,308 KB
testcase_17 AC 540 ms
49,872 KB
testcase_18 AC 537 ms
49,180 KB
testcase_19 AC 538 ms
49,188 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