結果
問題 | No.1398 調和の魔法陣 (構築) |
ユーザー | Shibuyap |
提出日時 | 2021-02-19 23:00:38 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,209 bytes |
コンパイル時間 | 2,157 ms |
コンパイル使用メモリ | 204,216 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-16 21:50:18 |
合計ジャッジ時間 | 28,615 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 23 ms
6,944 KB |
testcase_17 | AC | 23 ms
6,940 KB |
testcase_18 | AC | 23 ms
6,940 KB |
testcase_19 | AC | 25 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 23 ms
6,944 KB |
testcase_22 | AC | 23 ms
6,940 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 24 ms
6,940 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 24 ms
6,940 KB |
testcase_30 | WA | - |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i = 0; i < (n); ++i) #define srep(i,s,t) for (int i = s; i < t; ++i) #define drep(i,n) for(int i = (n)-1; i >= 0; --i) using namespace std; typedef long long int ll; typedef pair<int,int> P; #define yn {puts("YES");}else{puts("NO");} #define MAX_N 200005 int main() { int w, h, x; cin >> w >> h >> x; if(x > 36){ cout << -1 << endl; return 0; } if(x == 0){ rep(i,h){ rep(j,w){ cout << '0'; } cout << endl; } return 0; } int f[h+100][w+100]; rep(i,h+100){ rep(j,w+100){ f[i][j] = 0; } } rep(a,10){ rep(b,10){ rep(c,10){ rep(d,10){ int hh = min(h,10); int ww = min(w,10); rep(i,hh){ rep(j,ww){ if(i%3==0&&j%3==0){ f[i][j] = a; } if(i%3==0&&j%3==1){ f[i][j] = b; } if(i%3==1&&j%3==0){ f[i][j] = c; } if(i%3==1&&j%3==1){ f[i][j] = d; } } } int ok = 1; rep(i,hh){ rep(j,ww){ if(hh>=10&&i==hh-1) continue; if(ww>=10&&j==ww-1) continue; int sum = 0; srep(k,-1,2){ srep(l,-1,2){ if(i+k>=0&&j+l>=0){ sum += f[i+k][j+l]; } } } if(sum != x){ ok = 0; break; } } if(ok == 0) break; } if(ok){ rep(i,h){ rep(j,w){ if(i%3==0&&j%3==0){ f[i][j] = a; } if(i%3==0&&j%3==1){ f[i][j] = b; } if(i%3==1&&j%3==0){ f[i][j] = c; } if(i%3==1&&j%3==1){ f[i][j] = d; } cout << f[i][j]; } cout << endl; } return 0; } } } } } cout << -1 << endl; return 0; }