結果

問題 No.1974 2x2 Flipper
ユーザー kakel-sankakel-san
提出日時 2022-06-10 23:49:29
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 1,425 bytes
コンパイル時間 2,581 ms
コンパイル使用メモリ 109,924 KB
実行使用メモリ 46,088 KB
最終ジャッジ日時 2024-09-21 07:12:04
合計ジャッジ時間 7,248 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
27,388 KB
testcase_01 AC 48 ms
34,224 KB
testcase_02 AC 34 ms
27,348 KB
testcase_03 AC 123 ms
37,692 KB
testcase_04 AC 73 ms
34,520 KB
testcase_05 AC 57 ms
30,900 KB
testcase_06 AC 98 ms
36,256 KB
testcase_07 AC 75 ms
32,728 KB
testcase_08 AC 40 ms
27,244 KB
testcase_09 AC 99 ms
32,900 KB
testcase_10 AC 40 ms
25,340 KB
testcase_11 AC 84 ms
35,792 KB
testcase_12 AC 122 ms
37,040 KB
testcase_13 AC 86 ms
33,352 KB
testcase_14 AC 66 ms
31,888 KB
testcase_15 AC 134 ms
38,064 KB
testcase_16 AC 40 ms
25,200 KB
testcase_17 AC 108 ms
37,248 KB
testcase_18 AC 41 ms
27,244 KB
testcase_19 AC 41 ms
27,388 KB
testcase_20 AC 73 ms
34,288 KB
testcase_21 AC 173 ms
46,088 KB
testcase_22 AC 175 ms
39,924 KB
testcase_23 AC 173 ms
44,156 KB
testcase_24 AC 171 ms
44,040 KB
testcase_25 AC 32 ms
25,136 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 int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static void Main()
    {
        var c = NList;
        var (h, w) = (c[0], c[1]);
        var res = new int[h][];
        var count = 0;
        for (var i = 0; i < h; ++i)
        {
            res[i] = Enumerable.Repeat(1, w).ToArray();
        }
        if (h % 2 == 0 && w % 2 == 0)
        {
            count = h * w;
        }
        else if (h % 2 == 0)
        {
            for (var i = 0; i < h; ++i) res[i][w - 1] = 0;
            count = h * (w - 1);
        }
        else if (w % 2 == 0)
        {
            for (var j = 0; j < w; ++j) res[h - 1][j] = 0;
            count = (h - 1) * w;
        }
        else if (h <= w)
        {
            for (var i = 0; i < h; ++i) res[i][i] = 0;
            for (var i = h; i < w; ++i) res[h - 1][i] = 0;
            count = (h - 1) * w;
        }
        else
        {
            for (var i = 0; i < w; ++i) res[i][i] = 0;
            for (var i = w; i < h; ++i) res[i][w - 1] = 0;
            count = h * (w - 1);
        }
        if (h == 1 || w == 1) count = 0;
        WriteLine(count);
        WriteLine(string.Join("\n", res.Select(r => string.Join(" ", r))));
    }
}
0