結果

問題 No.987 N×Mマス計算(基本)
ユーザー mobchanmobchan
提出日時 2023-04-26 05:43:13
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 1,212 bytes
コンパイル時間 15,401 ms
コンパイル使用メモリ 168,400 KB
実行使用メモリ 188,168 KB
最終ジャッジ日時 2024-04-27 12:22:24
合計ジャッジ時間 10,416 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
30,336 KB
testcase_01 AC 55 ms
30,328 KB
testcase_02 AC 74 ms
30,720 KB
testcase_03 AC 60 ms
30,336 KB
testcase_04 AC 69 ms
30,452 KB
testcase_05 AC 65 ms
30,464 KB
testcase_06 AC 71 ms
30,464 KB
testcase_07 AC 62 ms
30,336 KB
testcase_08 AC 56 ms
30,464 KB
testcase_09 AC 57 ms
30,464 KB
testcase_10 AC 57 ms
30,336 KB
testcase_11 AC 72 ms
30,696 KB
testcase_12 AC 76 ms
31,104 KB
testcase_13 AC 63 ms
30,336 KB
testcase_14 AC 57 ms
30,456 KB
testcase_15 AC 63 ms
30,464 KB
testcase_16 AC 79 ms
30,716 KB
testcase_17 AC 71 ms
30,576 KB
testcase_18 AC 77 ms
30,592 KB
testcase_19 AC 101 ms
188,168 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (95 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 #

using System;
using System.Collections.Generic;
using System.Linq;

class Program
{
    delegate long MyDelegate(long a, long b);

    static long Add(long x, long y)
    {
        return x + y;
    }

    static long Multiply(long x, long y)
    {
        return x * y;
    }

    static void Main(string[] args)
    {
        MyDelegate calc;

        var input = Console.ReadLine().Split().Select(int.Parse).ToArray();
        var N = input[0];
        var M = input[1];

        var row = Console.ReadLine().Split();
        var op = row[0];

        if (op == "+") calc = Add;
        else calc = Multiply;

        var num = new List<long>();
        for (int i = 0; i < N; i++)
        {
            num.Add(long.Parse(Console.ReadLine()));
        }

        var num2 = new List<long>();
        for (int i = 1; i < row.Length; i++)
        {
            num2.Add(long.Parse(row[i]));
        }

        for (int i = 0; i < N; i++)
        {
            for (int j = 0; j < M; j++)
            {
                var result = calc(num[i], num2[j]);
                Console.Write(result);
                if (j != M - 1) Console.Write(" ");
            }
            Console.WriteLine();
        }
    }
}
0