結果

問題 No.1398 調和の魔法陣 (構築)
ユーザー koi_kotyakoi_kotya
提出日時 2021-02-19 22:04:47
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 22 ms / 3,153 ms
コード長 1,327 bytes
コンパイル時間 1,721 ms
コンパイル使用メモリ 169,456 KB
実行使用メモリ 5,064 KB
最終ジャッジ日時 2023-10-15 01:47:50
合計ジャッジ時間 28,055 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,368 KB
testcase_01 AC 2 ms
4,368 KB
testcase_02 AC 2 ms
4,368 KB
testcase_03 AC 1 ms
4,368 KB
testcase_04 AC 1 ms
4,368 KB
testcase_05 AC 1 ms
4,368 KB
testcase_06 AC 22 ms
4,836 KB
testcase_07 AC 2 ms
4,368 KB
testcase_08 AC 21 ms
4,780 KB
testcase_09 AC 21 ms
4,948 KB
testcase_10 AC 2 ms
4,368 KB
testcase_11 AC 22 ms
4,784 KB
testcase_12 AC 2 ms
4,368 KB
testcase_13 AC 22 ms
4,872 KB
testcase_14 AC 21 ms
4,784 KB
testcase_15 AC 1 ms
4,372 KB
testcase_16 AC 21 ms
4,812 KB
testcase_17 AC 21 ms
4,812 KB
testcase_18 AC 21 ms
4,788 KB
testcase_19 AC 22 ms
5,064 KB
testcase_20 AC 1 ms
4,376 KB
testcase_21 AC 21 ms
4,764 KB
testcase_22 AC 21 ms
4,780 KB
testcase_23 AC 2 ms
4,368 KB
testcase_24 AC 21 ms
4,824 KB
testcase_25 AC 2 ms
4,368 KB
testcase_26 AC 21 ms
4,784 KB
testcase_27 AC 21 ms
4,816 KB
testcase_28 AC 2 ms
4,368 KB
testcase_29 AC 21 ms
4,776 KB
testcase_30 AC 2 ms
4,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

typedef long long ll;
typedef pair<int,int> P;

#define p_ary(ary,a,b) do { cout << "["; for (int count = (a);count < (b);++count) cout << ary[count] << ((b)-1 == count ? "" : ", "); cout << "]\n"; } while(0)
#define p_map(map,it) do {cout << "{";for (auto (it) = map.begin();;++(it)) {if ((it) == map.end()) {cout << "}\n";break;}else cout << "" << (it)->first << "=>" << (it)->second << ", ";}}while(0)

template<typename T1,typename T2>ostream& operator<<(ostream& os,const pair<T1,T2>& a) {os << "(" << a.first << ", " << a.second << ")";return os;}

const char newl = '\n';

int main() {
    int h,w,s;
    cin >> w >> h >> s;
    int x = 0,y = 0,szx = 1,szy = 1;
    if (h%3 == 0) x = 1;
    else if (h%3 == 2) szx = 2;
    if (w%3 == 0) y = 1;
    else if (w%3 == 2) szy = 2;
    if (szx*szy*9 < s) {
        cout << -1 << newl;
        return 0;
    }
    vector<vector<int>> ans(h+2,vector<int>(w+2,0));
    for (int i = x;i < h;i += 3) for (int j = y;j < w;j += 3) {
        int ss = s;
        for (int k = 0;k < 3;++k) for (int l = 0;l < 3;++l) if (k < szx && l < szy) {
            ans[i+k][j+l] = min(9,ss);
            ss -= min(9,ss);
        }
    }
    for (int i = 0;i < h;++i) {
        for (int j = 0;j < w;++j) cout << ans[i][j];
        cout << newl;
    }
}
0