結果

問題 No.1205 Eye Drops
ユーザー penqenpenqen
提出日時 2020-12-15 20:06:46
言語 Elixir
(1.18.1)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 821 bytes
コンパイル時間 890 ms
コンパイル使用メモリ 65,520 KB
実行使用メモリ 86,212 KB
最終ジャッジ日時 2024-12-31 05:17:54
合計ジャッジ時間 45,125 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 536 ms
54,872 KB
testcase_01 AC 532 ms
54,284 KB
testcase_02 AC 551 ms
54,164 KB
testcase_03 AC 551 ms
54,368 KB
testcase_04 AC 550 ms
54,304 KB
testcase_05 AC 563 ms
55,352 KB
testcase_06 AC 549 ms
54,496 KB
testcase_07 AC 557 ms
55,032 KB
testcase_08 AC 569 ms
54,472 KB
testcase_09 AC 569 ms
54,032 KB
testcase_10 AC 580 ms
54,396 KB
testcase_11 AC 557 ms
54,292 KB
testcase_12 AC 561 ms
55,244 KB
testcase_13 AC 540 ms
53,912 KB
testcase_14 AC 568 ms
54,844 KB
testcase_15 AC 557 ms
54,296 KB
testcase_16 AC 544 ms
54,036 KB
testcase_17 AC 560 ms
54,168 KB
testcase_18 AC 540 ms
54,164 KB
testcase_19 AC 555 ms
54,424 KB
testcase_20 AC 552 ms
56,184 KB
testcase_21 AC 564 ms
54,368 KB
testcase_22 AC 559 ms
55,332 KB
testcase_23 AC 553 ms
54,172 KB
testcase_24 AC 552 ms
54,596 KB
testcase_25 AC 557 ms
54,292 KB
testcase_26 AC 558 ms
55,368 KB
testcase_27 AC 551 ms
54,540 KB
testcase_28 AC 555 ms
54,500 KB
testcase_29 AC 557 ms
54,700 KB
testcase_30 AC 561 ms
54,296 KB
testcase_31 AC 554 ms
54,324 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 531 ms
54,024 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
    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