結果

問題 No.2112 All 2x2 are Equal
ユーザー kakel-sankakel-san
提出日時 2022-10-28 23:57:20
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 231 ms / 2,000 ms
コード長 920 bytes
コンパイル時間 883 ms
コンパイル使用メモリ 115,252 KB
実行使用メモリ 65,536 KB
最終ジャッジ日時 2024-07-06 03:15:21
合計ジャッジ時間 7,811 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
19,328 KB
testcase_01 AC 24 ms
19,200 KB
testcase_02 AC 30 ms
20,760 KB
testcase_03 AC 28 ms
20,988 KB
testcase_04 AC 103 ms
35,328 KB
testcase_05 AC 135 ms
48,512 KB
testcase_06 AC 211 ms
63,744 KB
testcase_07 AC 88 ms
40,448 KB
testcase_08 AC 182 ms
62,464 KB
testcase_09 AC 35 ms
22,656 KB
testcase_10 AC 98 ms
40,832 KB
testcase_11 AC 75 ms
36,480 KB
testcase_12 AC 78 ms
31,104 KB
testcase_13 AC 196 ms
63,104 KB
testcase_14 AC 33 ms
21,984 KB
testcase_15 AC 144 ms
48,896 KB
testcase_16 AC 25 ms
19,456 KB
testcase_17 AC 176 ms
59,136 KB
testcase_18 AC 30 ms
20,708 KB
testcase_19 AC 37 ms
23,808 KB
testcase_20 AC 29 ms
20,396 KB
testcase_21 AC 170 ms
56,960 KB
testcase_22 AC 32 ms
21,504 KB
testcase_23 AC 30 ms
20,812 KB
testcase_24 AC 42 ms
25,088 KB
testcase_25 AC 48 ms
25,728 KB
testcase_26 AC 41 ms
24,960 KB
testcase_27 AC 61 ms
27,776 KB
testcase_28 AC 109 ms
35,968 KB
testcase_29 AC 38 ms
24,192 KB
testcase_30 AC 85 ms
39,168 KB
testcase_31 AC 136 ms
45,056 KB
testcase_32 AC 227 ms
65,536 KB
testcase_33 AC 224 ms
65,536 KB
testcase_34 AC 231 ms
65,408 KB
testcase_35 AC 225 ms
65,536 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static long NN => long.Parse(ReadLine());
    static long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (h, w) = (c[0], c[1]);
        var res = new int[h][];
        for (var i = 0; i < res.Length; ++i) res[i] = new int[w];
        var num = 0;
        for (var i = 0; i < h; ++i) for (var j = 0; j < w; ++j)
        {
            if ((i + j) % 2 == 0) res[i][j] = ++num;
        }
        for (var i = h - 1; i >= 0; --i) for (var j = w - 1; j >= 0; --j)
        {
            if ((i + j) % 2 == 1) res[i][j] = ++num;
        }
        WriteLine("Yes");
        WriteLine(string.Join("\n", res.Select(r => string.Join(" ", r))));
    }
}
0