結果

問題 No.793 うし数列 2
ユーザー 826814741_6826814741_6
提出日時 2019-03-14 17:12:20
言語 F#
(F# 4.0)
結果
AC  
実行時間 339 ms / 2,000 ms
コード長 526 bytes
コンパイル時間 6,677 ms
コンパイル使用メモリ 199,632 KB
実行使用メモリ 34,776 KB
最終ジャッジ日時 2024-06-26 21:29:07
合計ジャッジ時間 15,747 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 337 ms
34,092 KB
testcase_01 AC 339 ms
34,508 KB
testcase_02 AC 338 ms
34,080 KB
testcase_03 AC 336 ms
34,400 KB
testcase_04 AC 337 ms
34,644 KB
testcase_05 AC 335 ms
34,700 KB
testcase_06 AC 336 ms
33,960 KB
testcase_07 AC 338 ms
34,512 KB
testcase_08 AC 334 ms
34,056 KB
testcase_09 AC 334 ms
34,640 KB
testcase_10 AC 336 ms
34,772 KB
testcase_11 AC 334 ms
34,772 KB
testcase_12 AC 333 ms
34,772 KB
testcase_13 AC 334 ms
34,760 KB
testcase_14 AC 333 ms
34,776 KB
testcase_15 AC 333 ms
34,772 KB
testcase_16 AC 339 ms
34,216 KB
testcase_17 AC 332 ms
34,732 KB
testcase_18 AC 337 ms
34,756 KB
testcase_19 AC 336 ms
34,528 KB
testcase_20 AC 337 ms
34,344 KB
testcase_21 AC 334 ms
34,760 KB
testcase_22 AC 337 ms
34,636 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (232 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

let inline isOdd n = n&&&LanguagePrimitives.GenericOne=LanguagePrimitives.GenericOne
let inline isGt0 n = n>LanguagePrimitives.GenericZero
let inline rShift1 n = n>>>LanguagePrimitives.GenericOne

let inline genPow m =
    let f n p r = if isOdd p then r*n%m else r
    let rec g n p r = if isGt0 p then g (n*n%m) (rShift1 p) (f n p r) else r
    fun n p -> g n p LanguagePrimitives.GenericOne

let N,D = stdin.ReadLine()|>int64,1000000007L
let pow = genPow D

((pow 10L N) * 4L % D - 1L) * (pow 3L (D-2L)) % D |> printfn "%d"
0