結果

問題 No.1331 Moving Penguin
ユーザー yuruhiyayuruhiya
提出日時 2021-01-09 16:16:20
言語 Crystal
(1.11.2)
結果
AC  
実行時間 359 ms / 1,500 ms
コード長 1,795 bytes
コンパイル時間 13,614 ms
コンパイル使用メモリ 295,464 KB
実行使用メモリ 10,796 KB
最終ジャッジ日時 2024-11-07 15:05:31
合計ジャッジ時間 26,594 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 272 ms
10,112 KB
testcase_05 AC 270 ms
8,448 KB
testcase_06 AC 267 ms
8,448 KB
testcase_07 AC 267 ms
8,448 KB
testcase_08 AC 270 ms
8,576 KB
testcase_09 AC 269 ms
7,936 KB
testcase_10 AC 270 ms
8,704 KB
testcase_11 AC 270 ms
8,704 KB
testcase_12 AC 270 ms
8,704 KB
testcase_13 AC 271 ms
8,704 KB
testcase_14 AC 270 ms
8,704 KB
testcase_15 AC 270 ms
8,832 KB
testcase_16 AC 268 ms
8,064 KB
testcase_17 AC 267 ms
8,704 KB
testcase_18 AC 269 ms
7,936 KB
testcase_19 AC 270 ms
8,704 KB
testcase_20 AC 268 ms
8,704 KB
testcase_21 AC 270 ms
8,704 KB
testcase_22 AC 270 ms
8,704 KB
testcase_23 AC 270 ms
8,704 KB
testcase_24 AC 271 ms
8,704 KB
testcase_25 AC 269 ms
8,704 KB
testcase_26 AC 276 ms
10,128 KB
testcase_27 AC 277 ms
10,112 KB
testcase_28 AC 275 ms
10,112 KB
testcase_29 AC 271 ms
10,112 KB
testcase_30 AC 53 ms
6,816 KB
testcase_31 AC 115 ms
6,816 KB
testcase_32 AC 44 ms
6,816 KB
testcase_33 AC 80 ms
6,816 KB
testcase_34 AC 149 ms
7,552 KB
testcase_35 AC 315 ms
10,748 KB
testcase_36 AC 315 ms
9,984 KB
testcase_37 AC 318 ms
10,112 KB
testcase_38 AC 57 ms
6,816 KB
testcase_39 AC 260 ms
9,728 KB
testcase_40 AC 96 ms
6,820 KB
testcase_41 AC 272 ms
10,112 KB
testcase_42 AC 321 ms
10,112 KB
testcase_43 AC 319 ms
10,112 KB
testcase_44 AC 320 ms
10,112 KB
testcase_45 AC 356 ms
10,796 KB
testcase_46 AC 355 ms
10,548 KB
testcase_47 AC 359 ms
10,112 KB
testcase_48 AC 271 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

lib C
  fun strtoll(s : UInt8*, p : UInt8**, b : Int32) : Int64
end

class String
  def to_i64
    C.strtoll(self, nil, 10)
  end
end

struct Mint
  @@MOD = 1_000_000_007i64

  def self.mod
    @@MOD
  end

  def self.zero
    Mint.new(0)
  end

  def initialize(n)
    @n = n.to_i64 % @@MOD
  end

  getter n : Int64

  def + : self
    self
  end

  def - : self
    Mint.new(n != 0 ? @@MOD - @n : 0)
  end

  def +(m)
    Mint.new(@n + m.to_i64 % @@MOD)
  end

  def -(m)
    Mint.new(@n - m.to_i64 % @@MOD)
  end

  def *(m)
    Mint.new(@n * m.to_i64 % @@MOD)
  end

  def /(m)
    raise DivisionByZeroError.new if m == 0
    a, b, u, v = m.to_i64, @@MOD, 1i64, 0i64
    while b != 0
      t = a // b
      a -= t * b
      a, b = b, a
      u -= t * v
      u, v = v, u
    end
    Mint.new(@n * u)
  end

  def //(m)
    self / m
  end

  def **(m : Int)
    t, res = self, Mint.new(1)
    while m > 0
      res *= t if m.odd?
      t *= t
      m >>= 1
    end
    res
  end

  def ==(m)
    @n == m.to_i64
  end

  def !=(m)
    @n != m.to_i64
  end

  def succ
    self + 1
  end

  def pred
    self - 1
  end

  def to_i64 : Int64
    @n
  end

  delegate to_s, to: @n
  delegate inspect, to: @n
end

struct Int
  def to_mint : Mint
    Mint.new(self)
  end
end

class String
  def to_mint : Mint
    Mint.new(self)
  end
end

n = read_line.to_i
a = read_line.split.map(&.to_i)

sqrt_n = Math.sqrt(n).to_i
plus = Array.new(sqrt_n) { |i| [Mint.zero] * i }

dp = [Mint.zero] * n
dp[0] = Mint.new(1)
(0...n).each do |i|
  (1...sqrt_n).each do |x|
    dp[i] += plus[x][i % x]
  end

  if a[i] < sqrt_n
    plus[a[i]][i % a[i]] += dp[i]
  else
    (i + a[i]...n).step(a[i]) { |j|
      dp[j] += dp[i]
    }
  end
  if i + 1 < n && a[i] > 1
    dp[i + 1] += dp[i]
  end
end
puts dp[n - 1]
0