結果

問題 No.987 N×Mマス計算(基本)
ユーザー ichibanshiboriichibanshibori
提出日時 2020-06-19 23:34:08
言語 F#
(F# 4.0)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 654 bytes
コンパイル時間 7,901 ms
コンパイル使用メモリ 194,844 KB
実行使用メモリ 34,396 KB
最終ジャッジ日時 2024-07-03 15:55:27
合計ジャッジ時間 10,704 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
31,488 KB
testcase_01 AC 81 ms
31,488 KB
testcase_02 AC 84 ms
32,000 KB
testcase_03 AC 81 ms
31,616 KB
testcase_04 AC 83 ms
31,612 KB
testcase_05 AC 83 ms
31,744 KB
testcase_06 AC 84 ms
32,000 KB
testcase_07 AC 81 ms
31,468 KB
testcase_08 AC 81 ms
31,488 KB
testcase_09 AC 81 ms
31,488 KB
testcase_10 AC 81 ms
31,616 KB
testcase_11 AC 84 ms
31,740 KB
testcase_12 AC 84 ms
31,996 KB
testcase_13 AC 85 ms
31,872 KB
testcase_14 AC 81 ms
31,484 KB
testcase_15 AC 81 ms
31,468 KB
testcase_16 AC 84 ms
32,128 KB
testcase_17 AC 84 ms
31,856 KB
testcase_18 AC 87 ms
34,396 KB
testcase_19 AC 87 ms
32,508 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (264 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 () =
    let n, m = stdin.ReadLine().Split() |> fun arr -> (int arr.[0], int arr.[1])
    let opBarr = stdin.ReadLine().Split()
    let op = match opBarr.[0] with
             | "+" -> ( + )
             | "*" -> ( * )
             | _ -> failwith "illegal op"
    let bArr = opBarr.[1..] |> Array.map int64
    let aArr =
        seq {
            for i in 1..n -> stdin.ReadLine() |> int64
        }
        |> Seq.toArray
    seq {
        for i in 1..n ->
                seq {
                    for j in 1..m -> op aArr.[i - 1] bArr.[j - 1] |> string
                }
                |> String.concat " "

    }
    |> Seq.iter (printfn "%s")
0