結果

問題 No.1910 High Element on Grid
ユーザー kakel-sankakel-san
提出日時 2023-11-09 22:20:02
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 956 bytes
コンパイル時間 7,503 ms
コンパイル使用メモリ 165,120 KB
実行使用メモリ 186,688 KB
最終ジャッジ日時 2024-09-26 00:37:13
合計ジャッジ時間 15,286 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
31,104 KB
testcase_01 AC 59 ms
31,104 KB
testcase_02 AC 59 ms
30,720 KB
testcase_03 AC 57 ms
31,104 KB
testcase_04 AC 57 ms
30,832 KB
testcase_05 AC 57 ms
30,720 KB
testcase_06 AC 55 ms
30,720 KB
testcase_07 AC 55 ms
30,840 KB
testcase_08 AC 56 ms
30,976 KB
testcase_09 AC 57 ms
30,720 KB
testcase_10 AC 55 ms
30,720 KB
testcase_11 AC 73 ms
39,680 KB
testcase_12 AC 74 ms
39,936 KB
testcase_13 AC 72 ms
40,192 KB
testcase_14 AC 76 ms
41,084 KB
testcase_15 AC 73 ms
38,656 KB
testcase_16 AC 71 ms
35,968 KB
testcase_17 AC 73 ms
38,784 KB
testcase_18 AC 76 ms
39,928 KB
testcase_19 AC 72 ms
38,528 KB
testcase_20 AC 73 ms
38,648 KB
testcase_21 AC 75 ms
39,640 KB
testcase_22 AC 68 ms
35,328 KB
testcase_23 AC 76 ms
40,448 KB
testcase_24 AC 68 ms
35,840 KB
testcase_25 AC 71 ms
39,424 KB
testcase_26 AC 76 ms
39,040 KB
testcase_27 AC 76 ms
39,280 KB
testcase_28 AC 66 ms
35,328 KB
testcase_29 AC 68 ms
36,048 KB
testcase_30 AC 70 ms
38,516 KB
testcase_31 AC 54 ms
31,104 KB
testcase_32 AC 77 ms
41,968 KB
testcase_33 AC 82 ms
42,368 KB
testcase_34 AC 83 ms
42,112 KB
testcase_35 AC 80 ms
41,968 KB
testcase_36 AC 56 ms
30,976 KB
testcase_37 AC 69 ms
35,712 KB
testcase_38 AC 63 ms
33,280 KB
testcase_39 AC 61 ms
33,280 KB
testcase_40 AC 56 ms
31,356 KB
testcase_41 AC 62 ms
186,688 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (94 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 static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var p = NList;
        var (h, w) = (p[0], p[1]);
        var r = NList;
        var c = NList;
        var ans = new int[h][];
        for (var i = 0; i < ans.Length; ++i)
        {
            ans[i] = new int[w];
            for (var j = 0; j < w; ++j)
            {
                if (i == 0 && j == 0) ans[i][j] = 2000;
                else if (i == 0) ans[i][j] = j + h - c[j];
                else if (j == 0) ans[i][j] = i + w - r[i];
                else ans[i][j] = i + j;
            }
        }
        WriteLine(string.Join("\n", ans.Select(ai => string.Join(" ", ai))));
    }
}
0