結果

問題 No.16 累乗の加算
ユーザー taktak
提出日時 2018-04-13 23:08:38
言語 F#
(F# 4.0)
結果
RE  
実行時間 -
コード長 342 bytes
コンパイル時間 6,986 ms
コンパイル使用メモリ 190,416 KB
実行使用メモリ 36,352 KB
最終ジャッジ日時 2024-06-26 21:53:47
合計ジャッジ時間 12,821 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
32,128 KB
testcase_01 AC 94 ms
32,000 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (241 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 105 |> Seq.toArray
let ans  = a |> Array.sumBy(fun x -> pows.[x])

ans |> printfn "%A"
0