結果

問題 No.1092 modular arithmetic
ユーザー yuruhiyayuruhiya
提出日時 2020-06-26 12:57:50
言語 Crystal
(1.11.2)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 1,385 bytes
コンパイル時間 11,490 ms
コンパイル使用メモリ 296,508 KB
実行使用メモリ 9,984 KB
最終ジャッジ日時 2024-06-30 20:21:55
合計ジャッジ時間 13,478 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 22 ms
9,984 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 28 ms
8,704 KB
testcase_04 AC 24 ms
7,808 KB
testcase_05 AC 24 ms
7,808 KB
testcase_06 AC 17 ms
7,168 KB
testcase_07 AC 23 ms
7,808 KB
testcase_08 AC 26 ms
8,320 KB
testcase_09 AC 23 ms
7,680 KB
testcase_10 AC 19 ms
7,296 KB
testcase_11 AC 22 ms
7,552 KB
testcase_12 AC 16 ms
7,296 KB
testcase_13 AC 13 ms
6,944 KB
testcase_14 AC 15 ms
7,296 KB
testcase_15 AC 5 ms
6,940 KB
testcase_16 AC 11 ms
6,940 KB
testcase_17 AC 15 ms
7,296 KB
testcase_18 AC 27 ms
8,576 KB
testcase_19 AC 18 ms
7,168 KB
testcase_20 AC 29 ms
8,704 KB
testcase_21 AC 23 ms
7,680 KB
testcase_22 AC 27 ms
8,448 KB
testcase_23 AC 39 ms
7,552 KB
testcase_24 AC 14 ms
6,944 KB
testcase_25 AC 30 ms
6,944 KB
testcase_26 AC 39 ms
7,552 KB
testcase_27 AC 7 ms
6,944 KB
testcase_28 AC 32 ms
7,040 KB
testcase_29 AC 46 ms
8,320 KB
testcase_30 AC 31 ms
7,168 KB
testcase_31 AC 5 ms
6,940 KB
testcase_32 AC 27 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

struct ModInt
  @@mod : Int64 = 1_000_000_007i64

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

  def self.zero
    ModInt.new(0)
  end

  def self.mod=(m)
    @@mod = m.to_i64
  end

  getter n : Int64

  def + : self
    self
  end

  def - : self
    ModInt.new(n != 0 ? @@mod - @n : 0)
  end

  def +(m)
    ModInt.new(@n + m.to_i64 % @@mod)
  end

  def -(m)
    ModInt.new(@n - m.to_i64 % @@mod)
  end

  def *(m)
    ModInt.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
    ModInt.new(@n * u)
  end

  def //(m)
    self / m
  end

  def **(m)
    t, res = self, ModInt.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

ModInt.mod, n = read_line.split.map &.to_i
a = read_line.split.map { |i| ModInt.new(i) }
s = read_line
puts s.size.times.reduce(a.first) { |x, i|
  case s[i]
  when '+'
    x + a[i + 1]
  when '-'
    x - a[i + 1]
  when '*'
    x * a[i + 1]
  else
    x / a[i + 1]
  end
}
0