結果

問題 No.1205 Eye Drops
ユーザー penqenpenqen
提出日時 2020-12-15 20:06:46
言語 Elixir
(1.16.2)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 821 bytes
コンパイル時間 1,012 ms
コンパイル使用メモリ 64,264 KB
実行使用メモリ 54,672 KB
最終ジャッジ日時 2024-06-10 00:13:44
合計ジャッジ時間 24,579 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 531 ms
53,844 KB
testcase_01 AC 536 ms
53,776 KB
testcase_02 AC 563 ms
53,936 KB
testcase_03 AC 542 ms
54,064 KB
testcase_04 AC 539 ms
53,804 KB
testcase_05 AC 559 ms
54,016 KB
testcase_06 AC 533 ms
54,536 KB
testcase_07 AC 543 ms
54,072 KB
testcase_08 AC 578 ms
54,192 KB
testcase_09 AC 545 ms
53,936 KB
testcase_10 AC 557 ms
54,160 KB
testcase_11 AC 531 ms
53,804 KB
testcase_12 AC 641 ms
54,672 KB
testcase_13 AC 662 ms
54,252 KB
testcase_14 AC 576 ms
54,064 KB
testcase_15 AC 542 ms
53,936 KB
testcase_16 AC 529 ms
53,808 KB
testcase_17 AC 580 ms
53,804 KB
testcase_18 AC 541 ms
54,424 KB
testcase_19 AC 539 ms
54,060 KB
testcase_20 AC 539 ms
54,664 KB
testcase_21 AC 551 ms
54,416 KB
testcase_22 AC 532 ms
54,660 KB
testcase_23 AC 535 ms
53,876 KB
testcase_24 AC 545 ms
54,120 KB
testcase_25 AC 581 ms
53,936 KB
testcase_26 AC 547 ms
53,924 KB
testcase_27 AC 531 ms
54,316 KB
testcase_28 AC 532 ms
54,132 KB
testcase_29 AC 574 ms
53,928 KB
testcase_30 AC 577 ms
54,412 KB
testcase_31 AC 554 ms
54,196 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
    warning: variable "i" is unused (if the variable is not meant to be used, prefix it with an underscore)
    │
  5 │     nm = for i <- 0..(m - 1) do
    │              ~
    │
    └─ Main.exs:5:14: Main.main/0

ソースコード

diff #

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

    nm = for i <- 0..(m - 1) do
      IO.read(:line) |> String.trim() |> String.split(" ") |> Enum.map(&String.to_integer/1)
    end
    
    solve(n, m, nm) |> IO.puts
  end
  
  def solve(n, m, matrix) when 1 <= n
    and 0 <= m and m <= 100_000
    and is_list(matrix)
  do
    matrix
    |> Enum.reduce({true, {0, 0}}, fn
      [ti, pi], {true, {ct, cp}} ->
        dt = ti - ct
        dp = abs(cp - pi)
        if dp <= dt and pi < n do
          {true, {ti, pi}}
        else
          false
        end
      _, false ->
        false
    end)
    |> (fn
      false ->
        "No"
      {true, _} ->
        "Yes"
    end).()
  end

  def solve(_n, _m, _matrix), do: "No"
  
end
0