結果

問題 No.1398 調和の魔法陣 (構築)
ユーザー kakel-sankakel-san
提出日時 2024-07-18 23:09:18
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 77 ms / 3,153 ms
コード長 1,603 bytes
コンパイル時間 10,790 ms
コンパイル使用メモリ 172,300 KB
実行使用メモリ 191,480 KB
最終ジャッジ日時 2024-07-18 23:10:03
合計ジャッジ時間 41,262 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
30,720 KB
testcase_01 AC 59 ms
30,848 KB
testcase_02 AC 59 ms
30,720 KB
testcase_03 AC 61 ms
30,720 KB
testcase_04 AC 60 ms
31,104 KB
testcase_05 AC 60 ms
30,976 KB
testcase_06 AC 75 ms
35,840 KB
testcase_07 AC 59 ms
31,104 KB
testcase_08 AC 75 ms
35,584 KB
testcase_09 AC 77 ms
35,968 KB
testcase_10 AC 60 ms
31,104 KB
testcase_11 AC 75 ms
35,840 KB
testcase_12 AC 59 ms
31,104 KB
testcase_13 AC 76 ms
35,968 KB
testcase_14 AC 75 ms
35,584 KB
testcase_15 AC 58 ms
31,104 KB
testcase_16 AC 74 ms
35,948 KB
testcase_17 AC 75 ms
35,584 KB
testcase_18 AC 75 ms
36,096 KB
testcase_19 AC 75 ms
35,968 KB
testcase_20 AC 59 ms
31,104 KB
testcase_21 AC 77 ms
35,840 KB
testcase_22 AC 77 ms
35,712 KB
testcase_23 AC 59 ms
30,720 KB
testcase_24 AC 75 ms
35,840 KB
testcase_25 AC 58 ms
30,848 KB
testcase_26 AC 75 ms
35,968 KB
testcase_27 AC 74 ms
35,840 KB
testcase_28 AC 59 ms
31,104 KB
testcase_29 AC 76 ms
35,968 KB
testcase_30 AC 60 ms
191,480 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (129 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 (w, h, x) = (c[0], c[1], c[2]);
        WriteLine(string.Join("\n", Magic(h, w, x).Select(ai => string.Concat(ai))));
    }
    static int[][] Magic(int h, int w, int x)
    {
        var hoffset = h % 3 == 0 ? 1 : 0;
        var woffset = w % 3 == 0 ? 1 : 0;
        var hwidth = h % 3 == 2 ? 2 : 1;
        var wwidth = w % 3 == 2 ? 2 : 1;
        var max = hwidth * wwidth * 9;
        if (x > max)
        {
            return new int[][] { new int[] { -1 }};
        }
        var ans = new int[h][];
        for (var i = 0; i < ans.Length; ++i) ans[i] = new int[w];
        var rest = x;
        for (var i = 0; i < hwidth; ++i) for (var j = 0; j < wwidth; ++j)
        {
            ans[i + hoffset][j + woffset] = Math.Min(9, rest);
            rest -= ans[i + hoffset][j + woffset];
        }
        for (var i = 0; i < h; ++i) for (var j = 0; j < w; ++j)
        {
            if (i < 3 && j < 3) continue;
            ans[i][j] = ans[i % 3][j % 3];
        }
        return ans;
    }
}
0