結果

問題 No.2053 12345...
ユーザー noriocnorioc
提出日時 2024-08-12 16:02:07
言語 Elixir
(1.16.2)
結果
TLE  
実行時間 -
コード長 812 bytes
コンパイル時間 960 ms
コンパイル使用メモリ 62,344 KB
実行使用メモリ 314,064 KB
最終ジャッジ日時 2024-08-12 16:02:55
合計ジャッジ時間 46,078 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 566 ms
54,392 KB
testcase_01 AC 587 ms
54,264 KB
testcase_02 AC 608 ms
60,556 KB
testcase_03 AC 980 ms
106,848 KB
testcase_04 AC 1,758 ms
234,140 KB
testcase_05 AC 813 ms
95,908 KB
testcase_06 AC 1,776 ms
206,372 KB
testcase_07 AC 1,367 ms
154,188 KB
testcase_08 AC 1,352 ms
161,544 KB
testcase_09 AC 1,784 ms
248,424 KB
testcase_10 TLE -
testcase_11 AC 814 ms
87,072 KB
testcase_12 AC 746 ms
76,264 KB
testcase_13 TLE -
testcase_14 AC 1,231 ms
126,888 KB
testcase_15 AC 1,084 ms
109,544 KB
testcase_16 AC 1,024 ms
112,372 KB
testcase_17 AC 948 ms
99,488 KB
testcase_18 TLE -
testcase_19 AC 1,784 ms
232,500 KB
testcase_20 AC 747 ms
67,268 KB
testcase_21 AC 1,522 ms
159,372 KB
testcase_22 AC 569 ms
55,584 KB
testcase_23 AC 774 ms
82,068 KB
testcase_24 AC 1,153 ms
120,208 KB
testcase_25 AC 1,931 ms
294,100 KB
testcase_26 AC 1,382 ms
164,172 KB
testcase_27 AC 1,162 ms
108,612 KB
testcase_28 AC 961 ms
116,440 KB
testcase_29 AC 1,681 ms
204,056 KB
testcase_30 AC 1,004 ms
111,900 KB
testcase_31 AC 1,659 ms
186,320 KB
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def input, do: IO.read(:line) |> String.trim
  def ii, do: input() |> String.to_integer
  def li, do: input() |> String.split |> Enum.map(&String.to_integer/1)
  def yn(b), do: IO.puts(if b, do: "Yes", else: "No")

  def main do
    # _n = ii()
    IO.binread(:line)
    a = IO.binread(:line) |> String.trim |> String.split |> Enum.map(&String.to_integer/1)

    gg = a |> group_by2(fn a, b -> a+1 == b end)
    for g <- gg, reduce: 0 do
      acc ->
        k = length(g)
        div(k * (k-1), 2) + acc
    end
    |> IO.puts
  end

  def group_by2([], _pred), do: []
  def group_by2(xs, pred) do
    n = Stream.chunk_every(xs, 2, 1, :discard)
    |> Stream.take_while(fn [a, b] -> pred.(a, b) end)
    |> Enum.count

    {a, b} = Enum.split(xs, n+1)
    [a | group_by2(b, pred)]
  end
end
0