結果

問題 No.1050 Zero (Maximum)
ユーザー ikdikd
提出日時 2020-05-09 11:35:51
言語 F#
(F# 4.0)
結果
AC  
実行時間 371 ms / 2,000 ms
コード長 930 bytes
コンパイル時間 12,666 ms
コンパイル使用メモリ 211,056 KB
実行使用メモリ 36,184 KB
最終ジャッジ日時 2024-07-05 08:42:59
合計ジャッジ時間 20,210 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 332 ms
34,128 KB
testcase_01 AC 333 ms
34,316 KB
testcase_02 AC 342 ms
35,220 KB
testcase_03 AC 336 ms
35,156 KB
testcase_04 AC 352 ms
35,720 KB
testcase_05 AC 356 ms
35,872 KB
testcase_06 AC 344 ms
35,448 KB
testcase_07 AC 345 ms
35,368 KB
testcase_08 AC 338 ms
34,540 KB
testcase_09 AC 337 ms
35,192 KB
testcase_10 AC 363 ms
35,996 KB
testcase_11 AC 354 ms
34,900 KB
testcase_12 AC 333 ms
35,268 KB
testcase_13 AC 331 ms
34,248 KB
testcase_14 AC 333 ms
34,548 KB
testcase_15 AC 327 ms
34,132 KB
testcase_16 AC 365 ms
35,916 KB
testcase_17 AC 371 ms
36,184 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (285 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(28,9): warning FS0025: この式のパターン マッチが不完全です たとえば、値 '[|_; _; _|]' はパターンに含まれないケースを示す可能性があります。 [/home/judge/data/code/main.fsproj]
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

// Learn more about F# at http://fsharp.org

open System

let mo = 1000000007L
let inline (+%=) (x: byref<int64>) y = x <- (x + y) % mo
let inline ( *% ) x y = x * y % mo

type mat = int64 [] []

let inline ( *@ ) (a: mat) (b: mat) =
    let n = a.Length
    let mutable c = Array.init n (fun _ -> Array.create n 0L)
    for i = 0 to n - 1 do
        for j = 0 to n - 1 do
            for k = 0 to n - 1 do
                &c.[i].[j] +%= a.[i].[k] *% b.[k].[j]
    c

let rec matpow a n =
    if n = 1 then a
    elif n % 2 = 0 then matpow (a *@ a) (n / 2)
    else a *@ matpow a (n - 1)


[<EntryPoint>]
let main argv =
    let [| m; k |] = stdin.ReadLine().Split() |> Array.map int
    let mutable a = Array.init m (fun _ -> Array.create m 1L)
    for n = 0 to m - 1 do
        for i = 0 to m - 1 do
            &a.[n].[n * i % m] +%= 1L

    let b = (matpow a k)
    printfn "%d" b.[0].[0]
    0 // return an integer exit code
0