結果

問題 No.988 N×Mマス計算(総和)
ユーザー natoriusannatoriusan
提出日時 2023-08-01 17:28:13
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 453 bytes
コンパイル時間 8,572 ms
コンパイル使用メモリ 207,504 KB
実行使用メモリ 62,140 KB
最終ジャッジ日時 2024-10-11 08:45:48
合計ジャッジ時間 17,491 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 342 ms
34,396 KB
testcase_01 AC 341 ms
34,788 KB
testcase_02 AC 343 ms
35,692 KB
testcase_03 AC 342 ms
35,544 KB
testcase_04 AC 342 ms
35,412 KB
testcase_05 AC 343 ms
35,432 KB
testcase_06 AC 343 ms
35,176 KB
testcase_07 AC 343 ms
35,296 KB
testcase_08 AC 343 ms
35,424 KB
testcase_09 AC 346 ms
34,652 KB
testcase_10 AC 364 ms
41,300 KB
testcase_11 AC 376 ms
48,768 KB
testcase_12 AC 389 ms
52,992 KB
testcase_13 AC 365 ms
45,696 KB
testcase_14 AC 365 ms
45,568 KB
testcase_15 AC 358 ms
39,504 KB
testcase_16 AC 374 ms
49,664 KB
testcase_17 AC 380 ms
52,864 KB
testcase_18 AC 367 ms
48,128 KB
testcase_19 AC 377 ms
51,712 KB
testcase_20 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (242 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
    ((a |> Array.sum |> ((*)m)) + (b |> Array.sum |> ((*)n))) % k
else
    let f = Array.reduce (fun x y -> (x + y) % (int64 k))
    ((a |> f) * (b |> f)) % (int64 k)
|> printfn "%d"
0