結果

問題 No.987 N×Mマス計算(基本)
ユーザー cccccc
提出日時 2022-09-02 18:24:06
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 940 bytes
コンパイル時間 11,828 ms
コンパイル使用メモリ 169,340 KB
実行使用メモリ 185,512 KB
最終ジャッジ日時 2024-04-27 18:27:07
合計ジャッジ時間 8,662 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
31,220 KB
testcase_01 AC 48 ms
31,092 KB
testcase_02 AC 48 ms
30,976 KB
testcase_03 AC 50 ms
30,720 KB
testcase_04 AC 48 ms
30,976 KB
testcase_05 AC 48 ms
31,232 KB
testcase_06 AC 49 ms
31,360 KB
testcase_07 AC 47 ms
30,720 KB
testcase_08 AC 47 ms
31,104 KB
testcase_09 AC 48 ms
30,712 KB
testcase_10 AC 48 ms
31,232 KB
testcase_11 AC 50 ms
31,344 KB
testcase_12 AC 49 ms
31,360 KB
testcase_13 AC 48 ms
30,848 KB
testcase_14 AC 47 ms
31,232 KB
testcase_15 AC 49 ms
30,976 KB
testcase_16 AC 48 ms
31,360 KB
testcase_17 AC 50 ms
31,104 KB
testcase_18 AC 50 ms
31,360 KB
testcase_19 AC 52 ms
185,512 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (76 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.cs(15,15): warning CS0168: 変数 '_ans' は宣言されていますが、使用されていません [/home/judge/data/code/main.csproj]
  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.Linq;
using System.Collections.Generic;
using System.Text.RegularExpressions;


class Program
{
    static void Main()
    {
        var NM = Console.ReadLine().Split().Select(int.Parse).ToArray();
        var opB = Console.ReadLine().Split().ToArray();
        var op = opB[0];
        var num = opB.Skip(1).Select(long.Parse).ToArray();
        int[] _ans;

        for (var i = 0; i < NM[0]; i++)
        {
            // 標準入力A取得
            var A = long.Parse(Console.ReadLine());

                if ( op == "+" )
                {
                    var ans = Array.ConvertAll(num, i => i + A);
                    Console.WriteLine(String.Join(" ",ans));
                }
                    else if ( op == "*")
                {
                    var ans = Array.ConvertAll(num, i => i * A);
                    Console.WriteLine(String.Join(" ",ans));
                }
        }
    }
}
0