結果

問題 No.1399 すごろくで世界旅行 (構築)
ユーザー kakel-sankakel-san
提出日時 2024-07-18 23:19:09
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 100 ms / 3,153 ms
コード長 987 bytes
コンパイル時間 7,689 ms
コンパイル使用メモリ 165,488 KB
実行使用メモリ 202,800 KB
最終ジャッジ日時 2024-07-18 23:19:43
合計ジャッジ時間 31,337 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
30,832 KB
testcase_01 AC 58 ms
30,720 KB
testcase_02 AC 58 ms
30,976 KB
testcase_03 AC 59 ms
30,848 KB
testcase_04 AC 60 ms
31,104 KB
testcase_05 AC 59 ms
30,976 KB
testcase_06 AC 59 ms
30,976 KB
testcase_07 AC 59 ms
31,104 KB
testcase_08 AC 59 ms
31,104 KB
testcase_09 AC 58 ms
31,104 KB
testcase_10 AC 59 ms
31,104 KB
testcase_11 AC 60 ms
31,104 KB
testcase_12 AC 59 ms
30,828 KB
testcase_13 AC 58 ms
30,976 KB
testcase_14 AC 58 ms
30,592 KB
testcase_15 AC 65 ms
30,720 KB
testcase_16 AC 59 ms
31,104 KB
testcase_17 AC 96 ms
47,588 KB
testcase_18 AC 97 ms
47,860 KB
testcase_19 AC 99 ms
47,756 KB
testcase_20 AC 98 ms
47,880 KB
testcase_21 AC 99 ms
47,808 KB
testcase_22 AC 100 ms
202,800 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (93 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();
    static int[] LList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => int.Parse(ReadLine())).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (v, d) = (c[0], c[1]);
        var ans = new int[v][];
        for (var i = 0; i < v; ++i) ans[i] = new int[v];
        if (d == 1) for (var i = 0; i < v; ++i) for (var j = 0; j < v; ++j) ans[i][j] = 1;
        else for (var i = 0; i < v; ++i)
        {
            ans[i][0] = 1;
            ans[0][i] = 1;
        }
        WriteLine(string.Join("\n", ans.Select(ai => string.Concat(ai))));
    }
}
0