結果

問題 No.16 累乗の加算
ユーザー taktak
提出日時 2018-04-13 23:12:46
言語 F#
(F# 4.0)
結果
MLE  
実行時間 -
コード長 349 bytes
コンパイル時間 9,637 ms
コンパイル使用メモリ 189,752 KB
実行使用メモリ 524,360 KB
最終ジャッジ日時 2024-06-26 21:54:37
合計ジャッジ時間 22,728 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (256 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 modVal = 1000003
let genPowModSeq n = Seq.unfold(fun x -> Some(x,x*n%modVal)) 1

let x,N  = let t = stdin.ReadLine().Split() |> Array.map(int) in t.[0],t.[1]
let a    = stdin.ReadLine().Split() |> Array.map(int)

let pows = genPowModSeq x |> Seq.take 1000000001 |> Seq.toArray
let ans  = a |> Array.sumBy(fun x -> pows.[x])

ans |> printfn "%A"
0