結果

問題 No.1258 コインゲーム
ユーザー yuruhiyayuruhiya
提出日時 2020-10-16 22:11:34
言語 Crystal
(1.11.2)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 1,528 bytes
コンパイル時間 11,163 ms
コンパイル使用メモリ 296,820 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-30 21:21:36
合計ジャッジ時間 23,027 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
6,816 KB
testcase_01 AC 58 ms
6,940 KB
testcase_02 AC 23 ms
6,940 KB
testcase_03 AC 191 ms
6,944 KB
testcase_04 AC 221 ms
5,376 KB
testcase_05 AC 38 ms
5,376 KB
testcase_06 AC 160 ms
5,376 KB
testcase_07 AC 18 ms
5,376 KB
testcase_08 AC 16 ms
5,376 KB
testcase_09 AC 81 ms
5,376 KB
testcase_10 AC 193 ms
5,376 KB
testcase_11 AC 214 ms
5,376 KB
testcase_12 AC 157 ms
5,376 KB
testcase_13 AC 48 ms
5,376 KB
testcase_14 AC 16 ms
5,376 KB
testcase_15 AC 181 ms
5,376 KB
testcase_16 AC 39 ms
5,376 KB
testcase_17 AC 209 ms
5,376 KB
testcase_18 AC 74 ms
5,376 KB
testcase_19 AC 72 ms
5,376 KB
testcase_20 AC 153 ms
5,376 KB
testcase_21 AC 196 ms
5,376 KB
testcase_22 AC 139 ms
5,376 KB
testcase_23 AC 107 ms
5,376 KB
testcase_24 AC 40 ms
5,376 KB
testcase_25 AC 100 ms
5,376 KB
testcase_26 AC 87 ms
5,376 KB
testcase_27 AC 197 ms
5,376 KB
testcase_28 AC 51 ms
5,376 KB
testcase_29 AC 56 ms
5,376 KB
testcase_30 AC 243 ms
5,376 KB
testcase_31 AC 60 ms
5,376 KB
testcase_32 AC 29 ms
5,376 KB
testcase_33 AC 165 ms
5,376 KB
testcase_34 AC 206 ms
5,376 KB
testcase_35 AC 73 ms
5,376 KB
testcase_36 AC 203 ms
5,376 KB
testcase_37 AC 77 ms
5,376 KB
testcase_38 AC 188 ms
5,376 KB
testcase_39 AC 55 ms
5,376 KB
testcase_40 AC 221 ms
5,376 KB
testcase_41 AC 220 ms
5,376 KB
testcase_42 AC 221 ms
5,376 KB
testcase_43 AC 227 ms
5,376 KB
testcase_44 AC 222 ms
5,376 KB
testcase_45 AC 222 ms
5,376 KB
testcase_46 AC 222 ms
5,376 KB
testcase_47 AC 218 ms
5,376 KB
testcase_48 AC 216 ms
5,376 KB
testcase_49 AC 225 ms
5,376 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 ModInt
  @@MOD = 1_000_000_007i64

  def self.mod
    @@MOD
  end

  def self.zero
    ModInt.new(0)
  end

  def initialize(n)
    @n = n.to_i64 % @@MOD
  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 : Int)
    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

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

read_line.to_i.times do
  n, m, x = read_line.split.map(&.to_i)
  sum_all = (m + 1).to_mint ** n
  sum_even = ((1 - m).to_mint ** n + (1 + m).to_mint**n) / 2
  if x == 0
    puts sum_even
  else
    puts sum_all - sum_even
  end
end
0