結果

問題 No.2112 All 2x2 are Equal
ユーザー 沙耶花沙耶花
提出日時 2022-10-28 23:27:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 914 bytes
コンパイル時間 4,333 ms
コンパイル使用メモリ 266,952 KB
実行使用メモリ 54,272 KB
最終ジャッジ日時 2024-07-06 02:43:55
合計ジャッジ時間 10,154 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 8 ms
5,376 KB
testcase_03 AC 6 ms
5,376 KB
testcase_04 AC 95 ms
24,192 KB
testcase_05 AC 137 ms
30,464 KB
testcase_06 WA -
testcase_07 AC 69 ms
18,304 KB
testcase_08 AC 189 ms
41,600 KB
testcase_09 AC 11 ms
5,760 KB
testcase_10 AC 80 ms
20,864 KB
testcase_11 AC 56 ms
15,360 KB
testcase_12 AC 67 ms
17,280 KB
testcase_13 WA -
testcase_14 AC 10 ms
5,376 KB
testcase_15 AC 151 ms
33,408 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 187 ms
40,832 KB
testcase_18 WA -
testcase_19 AC 15 ms
6,400 KB
testcase_20 AC 6 ms
5,376 KB
testcase_21 AC 184 ms
39,424 KB
testcase_22 AC 8 ms
5,376 KB
testcase_23 WA -
testcase_24 AC 22 ms
7,680 KB
testcase_25 AC 29 ms
9,216 KB
testcase_26 WA -
testcase_27 AC 43 ms
12,288 KB
testcase_28 AC 107 ms
25,472 KB
testcase_29 AC 15 ms
6,528 KB
testcase_30 AC 65 ms
18,048 KB
testcase_31 AC 140 ms
31,744 KB
testcase_32 WA -
testcase_33 AC 284 ms
54,272 KB
testcase_34 AC 270 ms
54,272 KB
testcase_35 AC 264 ms
54,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001




int main(){
	int h,w;
	cin>>h>>w;
	
	if(h==2&&w==2){
		cout<<"Yes"<<endl;
		cout<<"1 3"<<endl;
		cout<<"2 4"<<endl;
		return 0;
	}
	/*
	if(h%2==0&&w%2==0){
		cout<<"No"<<endl;
		return 0;
	}
	*/
	
	vector a(h,vector<int> (w));
	rep(i,w)a[0][i] = i;
	
	for(int i=1;i<h;i++){
		a[i] = a[0];
		if(i%2==1)reverse(a[i].begin(),a[i].end());
	}
	
	rep(i,w){
		rep(j,h){
			if(i%2==0){
				a[j][i] += j*w;
			}
			else{
				a[h-1-j][i] += j*w;
			}
		}
	}
	cout<<"Yes"<<endl;
	rep(i,h){
		rep(j,w){
			if(j!=0)cout<<' ';
			cout<<a[i][j]+1;
		}
		cout<<endl;
	}
	set<int> s;
	rep(i,h){
		rep(j,w){
			s.insert(a[i][j]);
		}
	}
	
	//cout<<s.size()<<endl;
	
	return 0;
}
0