結果

問題 No.1223 I hate Golf
ユーザー penqenpenqen
提出日時 2020-12-15 15:22:26
言語 Elixir
(1.18.1)
結果
AC  
実行時間 557 ms / 2,000 ms
コード長 466 bytes
コンパイル時間 1,046 ms
コンパイル使用メモリ 64,772 KB
実行使用メモリ 54,916 KB
最終ジャッジ日時 2024-12-31 05:14:21
合計ジャッジ時間 10,692 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 553 ms
54,484 KB
testcase_01 AC 543 ms
54,344 KB
testcase_02 AC 552 ms
54,220 KB
testcase_03 AC 550 ms
54,124 KB
testcase_04 AC 550 ms
53,992 KB
testcase_05 AC 549 ms
54,156 KB
testcase_06 AC 548 ms
54,552 KB
testcase_07 AC 557 ms
54,248 KB
testcase_08 AC 545 ms
53,908 KB
testcase_09 AC 549 ms
54,108 KB
testcase_10 AC 550 ms
53,876 KB
testcase_11 AC 549 ms
54,476 KB
testcase_12 AC 547 ms
53,880 KB
testcase_13 AC 544 ms
54,788 KB
testcase_14 AC 543 ms
54,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    [n, k, t] = IO.read(:line) |> String.trim() |> String.split(" ") |> Enum.map(&String.to_integer/1)

    solve(n, k, t) |> IO.puts
  end
  
  def solve(n, k, t) when - 1_000_000_000 <= n and n <= 1_000_000_000
    and n not in [2004, 2006]
    and 1 <= k and k <= 1_000_000_000
    and 1 <= t and t <= 1_000_000_000
  do
    if abs(n) <= k * t do
      "Yes"
    else
      "No"
    end
  end

  def solve(_n, _k, _t), do: "No"
end
0