結果

問題 No.1587 012 Matrix
ユーザー kakel-sankakel-san
提出日時 2024-02-13 23:26:04
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 76 ms / 1,000 ms
コード長 794 bytes
コンパイル時間 6,909 ms
コンパイル使用メモリ 168,972 KB
実行使用メモリ 183,944 KB
最終ジャッジ日時 2024-09-28 18:40:45
合計ジャッジ時間 9,655 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
30,592 KB
testcase_01 AC 56 ms
30,976 KB
testcase_02 AC 52 ms
30,848 KB
testcase_03 AC 50 ms
30,592 KB
testcase_04 AC 51 ms
30,976 KB
testcase_05 AC 55 ms
30,704 KB
testcase_06 AC 55 ms
30,848 KB
testcase_07 AC 51 ms
30,592 KB
testcase_08 AC 51 ms
30,464 KB
testcase_09 AC 52 ms
30,836 KB
testcase_10 AC 52 ms
30,720 KB
testcase_11 AC 53 ms
31,232 KB
testcase_12 AC 66 ms
31,872 KB
testcase_13 AC 67 ms
32,248 KB
testcase_14 AC 67 ms
32,512 KB
testcase_15 AC 70 ms
33,152 KB
testcase_16 AC 71 ms
33,664 KB
testcase_17 AC 69 ms
34,176 KB
testcase_18 AC 76 ms
34,432 KB
testcase_19 AC 74 ms
34,168 KB
testcase_20 AC 70 ms
34,304 KB
testcase_21 AC 73 ms
34,560 KB
testcase_22 AC 53 ms
183,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (86 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();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var ans = new int[n][];
        for (var i = 0; i < n; ++i) ans[i] = Enumerable.Repeat(0, n).ToArray();
        for (var i = 0; i < n; ++i) for (var j = 0; j <= i; ++j)
        {
            ans[i][j] = i % 2 == 0 && i == j ? 1 : 2;
        }
        WriteLine(string.Join("\n", ans.Select(ai => string.Concat(ai))));
    }
}
0