結果

問題 No.1223 I hate Golf
ユーザー penqenpenqen
提出日時 2020-12-15 15:22:26
言語 Elixir
(1.16.2)
結果
AC  
実行時間 543 ms / 2,000 ms
コード長 466 bytes
コンパイル時間 976 ms
コンパイル使用メモリ 63,196 KB
実行使用メモリ 54,540 KB
最終ジャッジ日時 2024-06-10 00:11:12
合計ジャッジ時間 10,139 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 526 ms
53,816 KB
testcase_01 AC 530 ms
54,080 KB
testcase_02 AC 538 ms
54,068 KB
testcase_03 AC 519 ms
53,676 KB
testcase_04 AC 525 ms
54,064 KB
testcase_05 AC 532 ms
53,924 KB
testcase_06 AC 534 ms
54,004 KB
testcase_07 AC 535 ms
53,676 KB
testcase_08 AC 523 ms
53,800 KB
testcase_09 AC 537 ms
54,076 KB
testcase_10 AC 537 ms
54,160 KB
testcase_11 AC 537 ms
54,540 KB
testcase_12 AC 528 ms
54,056 KB
testcase_13 AC 535 ms
54,156 KB
testcase_14 AC 543 ms
53,872 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