結果

問題 No.16 累乗の加算
ユーザー taktak
提出日時 2018-04-14 00:53:01
言語 F#
(F# 4.0)
結果
AC  
実行時間 339 ms / 5,000 ms
コード長 412 bytes
コンパイル時間 16,661 ms
コンパイル使用メモリ 190,064 KB
実行使用メモリ 35,080 KB
最終ジャッジ日時 2024-06-26 22:03:56
合計ジャッジ時間 15,499 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 332 ms
34,884 KB
testcase_01 AC 331 ms
34,888 KB
testcase_02 AC 337 ms
34,992 KB
testcase_03 AC 335 ms
34,772 KB
testcase_04 AC 332 ms
34,924 KB
testcase_05 AC 334 ms
34,544 KB
testcase_06 AC 336 ms
34,576 KB
testcase_07 AC 333 ms
34,940 KB
testcase_08 AC 335 ms
34,584 KB
testcase_09 AC 331 ms
34,860 KB
testcase_10 AC 331 ms
35,080 KB
testcase_11 AC 336 ms
34,516 KB
testcase_12 AC 336 ms
34,568 KB
testcase_13 AC 339 ms
34,548 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (308 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 read() = stdin.ReadLine().Split() |> Array.map(int64)
let (|Odd|Even|) n = if n%2L=1L then Odd else Even
let modVal = 1000003L
let rec modPow x = function
    | 0L        -> 1L
    | Even as n -> modPow (x*x%modVal) (n/2L)
    | Odd  as n -> (x*(modPow x (n-1L))) % modVal

let x,N = let t = read() in t.[0],t.[1]
let a   = read()

a
|> Array.fold(fun acc a -> (acc + (modPow x a))%modVal) 0L
|> printfn "%i"
0