結果

問題 No.2112 All 2x2 are Equal
ユーザー 沙耶花沙耶花
提出日時 2022-10-28 23:33:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 404 ms / 2,000 ms
コード長 746 bytes
コンパイル時間 4,306 ms
コンパイル使用メモリ 265,840 KB
実行使用メモリ 54,144 KB
最終ジャッジ日時 2024-07-06 02:49:23
合計ジャッジ時間 12,178 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 8 ms
5,376 KB
testcase_03 AC 7 ms
5,376 KB
testcase_04 AC 143 ms
23,808 KB
testcase_05 AC 180 ms
30,336 KB
testcase_06 AC 357 ms
50,688 KB
testcase_07 AC 97 ms
18,048 KB
testcase_08 AC 281 ms
41,344 KB
testcase_09 AC 13 ms
5,504 KB
testcase_10 AC 113 ms
20,608 KB
testcase_11 AC 76 ms
15,104 KB
testcase_12 AC 87 ms
17,152 KB
testcase_13 AC 318 ms
45,184 KB
testcase_14 AC 11 ms
5,376 KB
testcase_15 AC 205 ms
33,280 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 278 ms
40,704 KB
testcase_18 AC 6 ms
5,376 KB
testcase_19 AC 16 ms
6,144 KB
testcase_20 AC 7 ms
5,376 KB
testcase_21 AC 265 ms
39,168 KB
testcase_22 AC 10 ms
5,376 KB
testcase_23 AC 7 ms
5,376 KB
testcase_24 AC 25 ms
7,424 KB
testcase_25 AC 34 ms
9,088 KB
testcase_26 AC 23 ms
7,296 KB
testcase_27 AC 56 ms
12,160 KB
testcase_28 AC 160 ms
25,344 KB
testcase_29 AC 18 ms
6,272 KB
testcase_30 AC 92 ms
17,792 KB
testcase_31 AC 187 ms
31,488 KB
testcase_32 AC 354 ms
54,016 KB
testcase_33 AC 357 ms
54,016 KB
testcase_34 AC 404 ms
54,144 KB
testcase_35 AC 392 ms
54,016 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;
	
	
	vector a(h,vector<int> (w));
	int cur = 0;
	rep(i,h){
		rep(j,w){
			if((i+j)%2==0){
				a[i][j] = cur;
				cur++;
			}
		}
	}
	for(int i=h-1;i>=0;i--){
		for(int j=w-1;j>=0;j--){
			if((i+j)%2==1){
				a[i][j] = cur;
				cur++;
			}
		}
	}
	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