結果

問題 No.2053 12345...
ユーザー noriocnorioc
提出日時 2024-08-12 16:09:13
言語 Elixir
(1.16.2)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,081 bytes
コンパイル時間 4,537 ms
コンパイル使用メモリ 61,364 KB
実行使用メモリ 302,056 KB
最終ジャッジ日時 2024-10-04 21:25:30
合計ジャッジ時間 43,049 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 541 ms
54,252 KB
testcase_01 AC 543 ms
54,324 KB
testcase_02 AC 597 ms
56,176 KB
testcase_03 AC 893 ms
102,968 KB
testcase_04 AC 1,417 ms
206,680 KB
testcase_05 AC 741 ms
85,912 KB
testcase_06 AC 1,427 ms
192,028 KB
testcase_07 AC 1,244 ms
143,484 KB
testcase_08 AC 1,167 ms
143,564 KB
testcase_09 AC 1,424 ms
225,368 KB
testcase_10 AC 1,632 ms
244,664 KB
testcase_11 AC 756 ms
80,376 KB
testcase_12 AC 692 ms
66,244 KB
testcase_13 AC 1,854 ms
267,432 KB
testcase_14 AC 1,009 ms
124,604 KB
testcase_15 AC 921 ms
108,896 KB
testcase_16 AC 963 ms
105,548 KB
testcase_17 AC 815 ms
84,724 KB
testcase_18 TLE -
testcase_19 AC 1,561 ms
229,700 KB
testcase_20 AC 674 ms
65,980 KB
testcase_21 AC 1,472 ms
145,600 KB
testcase_22 AC 563 ms
55,900 KB
testcase_23 AC 702 ms
73,224 KB
testcase_24 AC 954 ms
110,236 KB
testcase_25 AC 1,709 ms
234,344 KB
testcase_26 AC 1,215 ms
160,404 KB
testcase_27 AC 911 ms
109,212 KB
testcase_28 AC 975 ms
101,024 KB
testcase_29 AC 1,412 ms
192,712 KB
testcase_30 AC 858 ms
100,824 KB
testcase_31 AC 1,431 ms
176,360 KB
testcase_32 AC 1,641 ms
302,056 KB
権限があれば一括ダウンロードができます

ソースコード

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()
    _n = input()
    a = li()

    # 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

    gg = a |> gp2(fn a, b -> a+1 == b end)
    IO.puts gg
  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

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

    b = Enum.drop(xs, n+1)
    k = div((n+1) * n, 2)
    k + gp2(b, pred)
    #[n+1 | gp2(b, pred)]
  end
end
0