結果

問題 No.2112 All 2x2 are Equal
ユーザー zhtluozhtluo
提出日時 2022-10-28 21:52:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 650 bytes
コンパイル時間 1,722 ms
コンパイル使用メモリ 201,108 KB
実行使用メモリ 7,732 KB
最終ジャッジ日時 2024-07-06 00:58:52
合計ジャッジ時間 6,759 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 40 ms
6,940 KB
testcase_05 AC 51 ms
7,364 KB
testcase_06 AC 89 ms
7,480 KB
testcase_07 AC 30 ms
6,940 KB
testcase_08 AC 71 ms
7,624 KB
testcase_09 AC 5 ms
6,944 KB
testcase_10 AC 36 ms
7,332 KB
testcase_11 AC 23 ms
6,940 KB
testcase_12 AC 29 ms
7,048 KB
testcase_13 AC 78 ms
7,144 KB
testcase_14 AC 5 ms
6,944 KB
testcase_15 AC 56 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 69 ms
6,944 KB
testcase_18 AC 4 ms
6,940 KB
testcase_19 AC 8 ms
6,940 KB
testcase_20 AC 4 ms
6,996 KB
testcase_21 AC 66 ms
6,940 KB
testcase_22 AC 5 ms
6,940 KB
testcase_23 AC 4 ms
6,944 KB
testcase_24 AC 10 ms
6,944 KB
testcase_25 AC 13 ms
7,068 KB
testcase_26 AC 10 ms
6,940 KB
testcase_27 AC 20 ms
6,948 KB
testcase_28 AC 44 ms
6,940 KB
testcase_29 AC 8 ms
7,076 KB
testcase_30 AC 28 ms
6,944 KB
testcase_31 AC 53 ms
7,320 KB
testcase_32 AC 94 ms
7,680 KB
testcase_33 AC 92 ms
7,656 KB
testcase_34 AC 92 ms
7,564 KB
testcase_35 AC 94 ms
7,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

int N, M;
int A[1010][1010];

int main() {
    scanf("%d%d", &N, &M);
    int low = 1, high = N * M;
    for (int i = 0; i < N; ++i) {
        for (int j = 0; j < M; ++j) {
            if (i + j & 1) A[i][j] = low++;
            else A[i][j] = high--;
        }
    }
    for (int i = 0; i < N - 1; ++i)
        for (int j = 0; j < M - 1; ++j)
            if (A[i][j] + A[i + 1][j] + A[i][j + 1] + A[i + 1][j + 1] != A[0][0] + A[0][1] + A[1][0] + A[1][1]) {
                puts("Boom");
            }
    puts("Yes");
    for (int i = 0; i < N; ++i) for (int j = 0; j < M; ++j) printf("%d%c", A[i][j], " \n"[j + 1 == M]);
}
0