結果
問題 | No.2958 Placing Many L-s |
ユーザー | 👑 Nachia |
提出日時 | 2024-11-08 22:01:53 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,615 bytes |
コンパイル時間 | 957 ms |
コンパイル使用メモリ | 82,792 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-08 22:02:09 |
合計ジャッジ時間 | 5,032 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 21 ms
5,248 KB |
testcase_04 | AC | 21 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 3 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | AC | 6 ms
5,248 KB |
testcase_12 | WA | - |
testcase_13 | AC | 4 ms
5,248 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 6 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | WA | - |
testcase_20 | AC | 19 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | AC | 20 ms
5,248 KB |
testcase_23 | AC | 3 ms
5,248 KB |
testcase_24 | AC | 23 ms
5,248 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
ソースコード
#ifdef NACHIA #define _GLIBCXX_DEBUG #else #define NDEBUG #endif #include <iostream> #include <string> #include <vector> #include <algorithm> using i64 = long long; using u64 = unsigned long long; #define rep(i,n) for(int i=0; i<int(n); i++) const i64 INF = 1001001001001001001; template<typename A> void chmin(A& l, const A& r){ if(r < l) l = r; } template<typename A> void chmax(A& l, const A& r){ if(l < r) l = r; } #include <atcoder/modint> using Modint = atcoder::static_modint<998244353>; using namespace std; void testcase(){ int N, M; cin >> N >> M; if(N % 2 == 1 || M % 2 == 1){ cout << "-1\n"; return; } if(N % 4 == 2 && M % 4 == 2){ cout << "-1\n"; return; } bool f = M % 4 == 2; if(f) swap(N, M); vector<vector<int>> ans(N, vector<int>(M)); rep(i,N/2) rep(j,M/4){ int x = j * N + i * 2 + 1; ans[i*2+0][j*4+0] = x+0; ans[i*2+0][j*4+1] = x+0; ans[i*2+0][j*4+2] = x+0; ans[i*2+0][j*4+3] = x+1; ans[i*2+1][j*4+0] = x+0; ans[i*2+1][j*4+1] = x+1; ans[i*2+1][j*4+2] = x+1; ans[i*2+1][j*4+3] = x+1; } if(f) swap(N, M); cout << (N*M/4) << "\n"; if(f){ rep(i,N){ rep(j,M){ if(j) cout << " "; cout << ans[j][i]; } cout << "\n"; } } else { rep(i,N){ rep(j,M){ if(j) cout << " "; cout << ans[i][j]; } cout << "\n"; } } } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int T; cin >> T; rep(t,T) testcase(); return 0; }