結果

問題 No.988 N×Mマス計算(総和)
ユーザー ikdikd
提出日時 2020-06-06 22:09:06
言語 F#
(F# 4.0)
結果
AC  
実行時間 372 ms / 2,000 ms
コード長 579 bytes
コンパイル時間 13,617 ms
コンパイル使用メモリ 198,820 KB
実行使用メモリ 62,152 KB
最終ジャッジ日時 2024-07-06 07:47:26
合計ジャッジ時間 21,711 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 303 ms
35,492 KB
testcase_01 AC 303 ms
34,692 KB
testcase_02 AC 302 ms
34,724 KB
testcase_03 AC 307 ms
34,840 KB
testcase_04 AC 300 ms
35,232 KB
testcase_05 AC 312 ms
35,224 KB
testcase_06 AC 311 ms
34,400 KB
testcase_07 AC 300 ms
34,852 KB
testcase_08 AC 308 ms
34,808 KB
testcase_09 AC 303 ms
34,584 KB
testcase_10 AC 339 ms
41,252 KB
testcase_11 AC 345 ms
48,640 KB
testcase_12 AC 342 ms
52,736 KB
testcase_13 AC 330 ms
45,532 KB
testcase_14 AC 333 ms
45,184 KB
testcase_15 AC 324 ms
39,636 KB
testcase_16 AC 341 ms
49,408 KB
testcase_17 AC 350 ms
52,608 KB
testcase_18 AC 325 ms
47,872 KB
testcase_19 AC 339 ms
52,096 KB
testcase_20 AC 372 ms
62,152 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (298 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(9,9): 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 #

open System

let mutable mo = 1000000007L
let inline (+%) x y = (x + y) % mo
let inline ( *% ) x y = x * y % mo

[<EntryPoint>]
let main _ =
    let [| n; m; k |] = stdin.ReadLine().Split(' ') |> Array.map int64
    let line = stdin.ReadLine().Split(' ')
    let op = Array.head line |> Seq.head
    let b = Array.tail line |> Array.map int64

    let a =
        [| for _ in 1L .. n -> stdin.ReadLine() |> int64 |]

    mo <- k
    let sa = a |> Array.fold (+%) 0L
    let sb = b |> Array.fold (+%) 0L
    printfn "%d" <| if op = '+' then m *% sa +% n *% sb else sa *% sb
    0
0