結果

問題 No.988 N×Mマス計算(総和)
ユーザー natoriusannatoriusan
提出日時 2023-08-01 17:34:24
言語 F#
(F# 4.0)
結果
AC  
実行時間 399 ms / 2,000 ms
コード長 491 bytes
コンパイル時間 6,967 ms
コンパイル使用メモリ 208,096 KB
実行使用メモリ 60,284 KB
最終ジャッジ日時 2024-10-11 08:52:16
合計ジャッジ時間 15,899 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
35,364 KB
testcase_01 AC 344 ms
34,664 KB
testcase_02 AC 344 ms
34,700 KB
testcase_03 AC 342 ms
34,468 KB
testcase_04 AC 342 ms
35,368 KB
testcase_05 AC 341 ms
34,732 KB
testcase_06 AC 344 ms
34,732 KB
testcase_07 AC 344 ms
34,476 KB
testcase_08 AC 343 ms
34,588 KB
testcase_09 AC 344 ms
34,824 KB
testcase_10 AC 363 ms
41,324 KB
testcase_11 AC 371 ms
48,896 KB
testcase_12 AC 389 ms
52,864 KB
testcase_13 AC 368 ms
45,652 KB
testcase_14 AC 367 ms
45,312 KB
testcase_15 AC 361 ms
39,572 KB
testcase_16 AC 378 ms
49,920 KB
testcase_17 AC 385 ms
52,480 KB
testcase_18 AC 369 ms
47,744 KB
testcase_19 AC 382 ms
52,096 KB
testcase_20 AC 399 ms
60,284 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (233 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(1,5): 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 #

let [|n; m; k|] = stdin.ReadLine().Split " " |> Array.map int64

let x = stdin.ReadLine().Split " "

let op = x.[0]
let b = x.[1..] |> Array.map int64
let a =
    [|
        for _ in 0..(n-1L |> int) ->
            stdin.ReadLine () |> int64
    |]
    
if op = "+" then
    let f a = Array.reduce (fun x y -> (x + y) % k) >> (fun x -> (x * a) % k)
    ((a |> f m) + (b |> f n)) % k
else
    let f = Array.reduce (fun x y -> (x + y) % k)
    ((a |> f) * (b |> f)) % (int64 k)
|> printfn "%d"
0