結果

問題 No.988 N×Mマス計算(総和)
ユーザー natoriusannatoriusan
提出日時 2023-08-01 17:32:34
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 463 bytes
コンパイル時間 9,582 ms
コンパイル使用メモリ 208,112 KB
実行使用メモリ 60,544 KB
最終ジャッジ日時 2024-10-11 08:49:55
合計ジャッジ時間 15,754 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
34,728 KB
testcase_01 AC 339 ms
35,232 KB
testcase_02 AC 343 ms
35,504 KB
testcase_03 AC 345 ms
34,832 KB
testcase_04 AC 341 ms
35,236 KB
testcase_05 AC 344 ms
34,724 KB
testcase_06 AC 344 ms
34,588 KB
testcase_07 AC 343 ms
34,988 KB
testcase_08 AC 344 ms
34,848 KB
testcase_09 AC 343 ms
35,484 KB
testcase_10 AC 363 ms
41,300 KB
testcase_11 AC 372 ms
48,640 KB
testcase_12 AC 384 ms
52,844 KB
testcase_13 AC 366 ms
45,696 KB
testcase_14 AC 365 ms
45,440 KB
testcase_15 AC 360 ms
39,844 KB
testcase_16 AC 378 ms
49,664 KB
testcase_17 AC 383 ms
52,736 KB
testcase_18 AC 370 ms
48,128 KB
testcase_19 AC 381 ms
52,096 KB
testcase_20 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (288 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.sum >> (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