結果

問題 No.2958 Placing Many L-s
ユーザー keisuke6keisuke6
提出日時 2024-11-08 21:37:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 894 bytes
コンパイル時間 2,288 ms
コンパイル使用メモリ 208,124 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 21:38:04
合計ジャッジ時間 6,938 ms
ジャッジサーバーID
(参考情報)
judge1 / 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 22 ms
5,248 KB
testcase_04 AC 23 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 9 ms
5,248 KB
testcase_10 WA -
testcase_11 AC 19 ms
5,248 KB
testcase_12 WA -
testcase_13 AC 12 ms
5,248 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 13 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 2 ms
5,248 KB
testcase_24 AC 221 ms
5,248 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main(){
    int TT;
    cin>>TT;
    set<pair<int,int>> s;
    s.insert({0,0});
    s.insert({0,1});
    s.insert({0,2});
    s.insert({1,0});
    while(TT--){
    	int N,M;
    	cin>>N>>M;
    	if(N%4 == 0 && M%2 == 0){
    		cout<<N*M/4<<endl;
    		for(int i=0;i<N;i++){
    			for(int j=0;j<M;j++){
    				int t = (i/4)*(M/2)+j/2;
    				int x = j%2, y = i%4;
    				cout<<(s.count({x,y}) ? 2*t+1 : 2*t+2)<<' ';
    			}
    			cout<<endl;
    		}
    		continue;
    	}
    	else if(M%4 == 0 && N%2 == 0){
    		cout<<N*M/4<<endl;
    		for(int i=0;i<N;i++){
    			for(int j=0;j<M;j++){
    				int t = (i/2)*(M/4)+j/4;
    				int x = i%2, y = j%4;
    				cout<<(s.count({x,y}) ? 2*t+1 : 2*t+2)<<' ';
    			}
    			cout<<endl;
    		}
    		continue;
    	}
    	else{
    		cout<<-1<<endl;
    	}
    }
}
0