結果

問題 No.1035 Color Box
ユーザー ikdikd
提出日時 2020-05-02 02:17:16
言語 F#
(F# 4.0)
結果
AC  
実行時間 401 ms / 2,000 ms
コード長 1,249 bytes
コンパイル時間 15,114 ms
コンパイル使用メモリ 199,672 KB
実行使用メモリ 45,020 KB
最終ジャッジ日時 2024-06-07 16:26:57
合計ジャッジ時間 29,943 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 392 ms
45,020 KB
testcase_01 AC 341 ms
37,264 KB
testcase_02 AC 331 ms
35,616 KB
testcase_03 AC 339 ms
37,120 KB
testcase_04 AC 351 ms
43,488 KB
testcase_05 AC 336 ms
38,832 KB
testcase_06 AC 335 ms
35,112 KB
testcase_07 AC 354 ms
44,888 KB
testcase_08 AC 396 ms
45,016 KB
testcase_09 AC 370 ms
44,892 KB
testcase_10 AC 341 ms
40,704 KB
testcase_11 AC 332 ms
37,824 KB
testcase_12 AC 335 ms
36,340 KB
testcase_13 AC 386 ms
44,896 KB
testcase_14 AC 394 ms
44,996 KB
testcase_15 AC 401 ms
44,892 KB
testcase_16 AC 328 ms
35,716 KB
testcase_17 AC 326 ms
35,556 KB
testcase_18 AC 333 ms
35,060 KB
testcase_19 AC 399 ms
44,636 KB
testcase_20 AC 326 ms
34,948 KB
testcase_21 AC 346 ms
35,736 KB
testcase_22 AC 332 ms
34,840 KB
testcase_23 AC 328 ms
35,224 KB
testcase_24 AC 327 ms
34,832 KB
testcase_25 AC 329 ms
35,456 KB
testcase_26 AC 327 ms
35,092 KB
testcase_27 AC 327 ms
34,840 KB
testcase_28 AC 325 ms
35,092 KB
testcase_29 AC 327 ms
35,088 KB
testcase_30 AC 327 ms
35,604 KB
testcase_31 AC 330 ms
34,712 KB
testcase_32 AC 328 ms
35,736 KB
testcase_33 AC 330 ms
34,812 KB
testcase_34 AC 327 ms
35,712 KB
testcase_35 AC 326 ms
35,472 KB
testcase_36 AC 328 ms
34,964 KB
testcase_37 AC 329 ms
35,612 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (324 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(15,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 rec mpow (a: int64) x m =
    if x = 1L then
        a
    elif x % 2L = 0L then
        mpow (a * a % m) (x / 2L) m
    else
        a * mpow a (x - 1L) m % m

[<EntryPoint>]
let main argv =
    let [|n; m|] = stdin.ReadLine().Split() |> Array.map int
    let l = [n; m] |> List.max
    let mo = 1000000007L
    // let mutable fact = [n; m] |> List.max |> Array.create 1
    let fact = 
        Array.concat[ [|1L|]; [| for i in 1L .. int64(l) -> i |] ]
            |> Array.mapFold (fun acc x -> acc * x % mo, acc * x % mo) 1L
            |> fst
    let inv = 
        Array.concat[ [| for i in 1L .. int64(l) -> i |]; [|1L|] ]
        |> Array.rev
        |> Array.mapFold (fun acc x -> acc * x % mo, acc * x % mo) (mpow fact.[l] (mo - 2L) mo)
        |> fst
        |> Array.rev
    let binom a b =
        fact.[a] * inv.[b] % mo * inv.[a - b] % mo
    let mutable ans = 0L
    for i = m downto 1 do
        if (m - i) % 2 = 0 then
            ans <- (ans + (binom m i) * (mpow (i |> int64) (n |> int64) mo) % mo) % mo
        else
            ans <- (ans - (binom m i) * (mpow (i |> int64) (n |> int64) mo) % mo + mo) % mo
    printfn "%d" ans
    0 // return an integer exit code
0