結果

問題 No.1398 調和の魔法陣 (構築)
ユーザー t33ft33f
提出日時 2021-02-20 09:44:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,647 ms / 3,153 ms
コード長 1,192 bytes
コンパイル時間 737 ms
コンパイル使用メモリ 78,592 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-17 11:29:34
合計ジャッジ時間 66,660 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 2,540 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2,577 ms
6,944 KB
testcase_09 AC 2,595 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2,553 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2,618 ms
6,940 KB
testcase_14 AC 2,547 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2,549 ms
6,940 KB
testcase_17 AC 2,565 ms
6,940 KB
testcase_18 AC 2,544 ms
6,944 KB
testcase_19 AC 2,560 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2,598 ms
6,940 KB
testcase_22 AC 2,503 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2,647 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2,504 ms
6,940 KB
testcase_27 AC 2,635 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2,543 ms
6,940 KB
testcase_30 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <vector>
#include <iostream>
using namespace std;
int main() {
    int w, h, x; cin >> w >> h >> x;
    int a[3][3] = {{0, 0, 0},{0, 0, 0},{0, 0, 0}};
    int s = 0;
    for (int i = 0; i < 2; i++) {
        if (h % 3 == i) continue;
        for (int j = 0; j < 2; j++) {
            if (w % 3 == j) continue;
            a[i][j] = min(9, x-s);
            s += a[i][j];
        }
    }
    if (s != x) cout << -1 << endl;
    else {
        vector ans(h, vector<int>(w, 0));
        for (int i = 0; i < h; i++)
            for (int j = 0; j < w; j++)
                ans[i][j] = a[i%3][j%3];                
        for (int i = 0; i < h; i++) {
            for (int a : ans[i]) cout << a;
            cout << endl;
        }

        for (int i = 0; i < h; i++)
            for (int j = 0; j < w; j++) {
                int sum = 0;
                for (int x = i-1; x <= i+1; x++)
                    for (int y = j-1; y <= j+1; y++)
                        if (0 <= x && x < h && 0 <= y && y < w)
                            sum += ans[x][y];
                cerr << i << ' ' << j << ' ' << sum << endl;
                assert(sum == x);
            }
    }
}
0