結果

問題 No.1049 Zero (Exhaust)
ユーザー yudedakoyudedako
提出日時 2022-01-26 17:39:32
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 842 ms / 2,000 ms
コード長 2,999 bytes
コンパイル時間 11,742 ms
コンパイル使用メモリ 274,712 KB
実行使用メモリ 65,296 KB
最終ジャッジ日時 2024-06-02 12:20:15
合計ジャッジ時間 34,038 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 801 ms
65,104 KB
testcase_01 AC 841 ms
65,132 KB
testcase_02 AC 835 ms
65,076 KB
testcase_03 AC 833 ms
65,092 KB
testcase_04 AC 842 ms
65,076 KB
testcase_05 AC 838 ms
64,944 KB
testcase_06 AC 817 ms
64,936 KB
testcase_07 AC 824 ms
65,028 KB
testcase_08 AC 815 ms
65,264 KB
testcase_09 AC 828 ms
65,296 KB
testcase_10 AC 830 ms
64,992 KB
testcase_11 AC 813 ms
64,772 KB
testcase_12 AC 815 ms
64,936 KB
testcase_13 AC 826 ms
65,056 KB
testcase_14 AC 837 ms
65,188 KB
testcase_15 AC 825 ms
65,140 KB
testcase_16 AC 811 ms
64,980 KB
testcase_17 AC 809 ms
65,260 KB
testcase_18 AC 803 ms
65,040 KB
testcase_19 AC 809 ms
65,060 KB
testcase_20 AC 817 ms
65,200 KB
testcase_21 AC 828 ms
65,216 KB
testcase_22 AC 811 ms
65,004 KB
testcase_23 AC 812 ms
64,964 KB
testcase_24 AC 810 ms
64,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.annotation.tailrec
import scala.io.StdIn.*
import scala.math.*
object ModInt:
  opaque type ModInt = Long
  extension (value: Long)
    inline def asModInt(using inline mod: Int): ModInt =  value % mod
  extension (value: Int)
    inline def asModInt(using inline mod: Int): ModInt = value % mod
  trait Converter[T]:
    inline def convert(value: T)(using inline mod: Int): ModInt
  inline given Converter[Int] with
    override inline def convert(value: Int)(using inline mod: Int) = value.asModInt
  inline given Converter[Long] with
    override inline def convert(value: Long)(using inline mod: Int) = value.asModInt
  inline given Converter[ModInt] with
    override inline def convert(value: ModInt)(using inline mod: Int) = value
  extension (modInt: ModInt)
    inline def asLong(using inline mod: Int): Long = (modInt + mod) % mod
    inline def inverse(using inline mod: Int): ModInt = modInt.powMod(mod - 2)
    inline def powMod(exp: Long)(using inline mod: Int): ModInt =
      var result = 1L
      var base = modInt
      var e = exp
      while e > 0 do
        if (e & 1) == 1 then
          result = result * base % mod
        base = base * base % mod
        e >>= 1
      result
    inline def powMod(exp: Int)(using inline mod: Int): ModInt = powMod(exp.toLong)
  extension [L: Converter, R: Converter] (left: L)
    inline def +(right: R)(using inline mod: Int): ModInt = (summon[Converter[L]].convert(left) + summon[Converter[R]].convert(right)).asModInt
    inline def -(right: R)(using inline mod: Int): ModInt = (summon[Converter[L]].convert(left) - summon[Converter[R]].convert(right)).asModInt
    inline def *(right: R)(using inline mod: Int): ModInt = (summon[Converter[L]].convert(left) * summon[Converter[R]].convert(right)).asModInt
    inline def /(right: R)(using inline mod: Int): ModInt = (summon[Converter[L]].convert(left) * summon[Converter[R]].convert(right).inverse).asModInt

import ModInt.*
type Matrix = Array[Array[ModInt]]

extension (left: Matrix)
  inline def *(right: Matrix)(using inline mod: Int): Matrix =
    val row = left.length
    val column = right(0).length
    val mid = right.length
    Array.tabulate(row){i =>
      Array.tabulate(column){j =>
        (0 until mid).foldLeft(0.asModInt){(acc, k) => acc + left(i)(k) * right(k)(j)}
      }
    }
  inline def pow(exp: Int)(using inline mod: Int): Matrix =
    var result = Array.tabulate(left.length){i => Array.tabulate(left.length){j => if i == j then 1.asModInt else 0.asModInt}}
    var e = exp
    var base = left
    while e > 0 do
      if (e & 1) == 1 then
        result = result * base
      base = base * base
      e = e >> 1
    result

@main def main =
  inline given mod: Int = 1000000007
  val Array(p, k) = readLine().split(' ').map(_.toInt)
  val init = Array(Array(1.asModInt), Array(2.asModInt))
  val op = Array(Array((p - 1).asModInt, 1.asModInt), Array(0.asModInt, 2 * p.asModInt))
  val Array(Array(result), _) = op.pow(k) * init
  println(result)
0