結果

問題 No.1974 2x2 Flipper
ユーザー 沙耶花沙耶花
提出日時 2022-06-10 21:47:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 895 bytes
コンパイル時間 4,417 ms
コンパイル使用メモリ 263,316 KB
実行使用メモリ 7,552 KB
最終ジャッジ日時 2024-09-21 07:05:42
合計ジャッジ時間 7,877 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 10 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 50 ms
6,144 KB
testcase_04 AC 24 ms
5,376 KB
testcase_05 AC 14 ms
5,376 KB
testcase_06 AC 35 ms
5,376 KB
testcase_07 AC 25 ms
5,376 KB
testcase_08 AC 7 ms
5,376 KB
testcase_09 AC 37 ms
5,504 KB
testcase_10 AC 6 ms
5,376 KB
testcase_11 AC 29 ms
5,376 KB
testcase_12 AC 51 ms
6,016 KB
testcase_13 AC 32 ms
5,376 KB
testcase_14 AC 21 ms
5,376 KB
testcase_15 AC 57 ms
6,656 KB
testcase_16 AC 6 ms
5,376 KB
testcase_17 AC 42 ms
5,760 KB
testcase_18 AC 6 ms
5,376 KB
testcase_19 AC 7 ms
5,376 KB
testcase_20 AC 23 ms
5,376 KB
testcase_21 AC 75 ms
7,552 KB
testcase_22 AC 75 ms
7,552 KB
testcase_23 AC 74 ms
7,424 KB
testcase_24 AC 99 ms
7,552 KB
testcase_25 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
	int h,w;
	cin>>h>>w;
	
	vector a(h,vector<int>(w,0));
	rep(i,h){
		rep(j,w){
			if(a[i][j]==1)continue;
			if(i+1<h&&j+1<w){
				rep(k,2){
					rep(l,2){
						a[i+k][j+l] = 1;
					}
				}
			}
		}
	}
	
	if(h>=3&&w>=3&&h%2==1&&w%2==1){
		a.assign(h,vector<int>(w,1));
		if(h>=w){
			rep(i,h){
				if(i<w){
					a[i][i] = 0;
				}
				else{
					a[i][w-1] = 0;
				}
			}
		}
		else{
			rep(i,w){
				if(i<h){
					a[i][i] = 0;
				}
				else{
					a[h-1][i] = 0;
				}
			}
		}
	}
	
	int ans = 0;
	rep(i,h){
		rep(j,w){
			ans += a[i][j];
		}
	}
	cout<<ans<<endl;
	rep(i,h){
		rep(j,w){
			if(j!=0)cout<<' ';
			cout<<a[i][j];
		}
		cout<<endl;
	}
	
    return 0;
}
0