結果

問題 No.1974 2x2 Flipper
ユーザー narahatonarahato
提出日時 2022-06-10 22:41:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 3,881 bytes
コンパイル時間 997 ms
コンパイル使用メモリ 114,136 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-21 05:59:53
合計ジャッジ時間 4,201 ms
ジャッジサーバーID
(参考情報)
judge13 / judge10
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 9 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 42 ms
4,348 KB
testcase_04 AC 20 ms
4,348 KB
testcase_05 AC 14 ms
4,348 KB
testcase_06 AC 30 ms
4,348 KB
testcase_07 AC 20 ms
4,348 KB
testcase_08 AC 6 ms
4,348 KB
testcase_09 AC 31 ms
4,348 KB
testcase_10 AC 6 ms
4,348 KB
testcase_11 AC 27 ms
4,348 KB
testcase_12 AC 43 ms
4,348 KB
testcase_13 AC 29 ms
4,348 KB
testcase_14 AC 17 ms
4,348 KB
testcase_15 AC 48 ms
4,348 KB
testcase_16 AC 5 ms
4,348 KB
testcase_17 AC 34 ms
4,348 KB
testcase_18 AC 5 ms
4,348 KB
testcase_19 AC 6 ms
4,348 KB
testcase_20 AC 21 ms
4,348 KB
testcase_21 AC 62 ms
4,348 KB
testcase_22 AC 65 ms
4,348 KB
testcase_23 AC 64 ms
4,348 KB
testcase_24 AC 63 ms
4,348 KB
testcase_25 AC 2 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<numeric>
#include<set>
#include<deque>
#include<algorithm>
#include<queue>
#include<math.h>
#include<tuple>
#include<functional>
#include<limits>
#include<map>
#include<stack>
#include<string>
#include<stdio.h>

#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define Rep(i,a,n) for(int i=(int) a;i<(int) n;i++)
#define ALL(a)  a.begin(),a.end()
#define Upper(a,n) upper_bound(((vector<ll>)a).begin(), (a).end(),(int) n) - a.begin();
#define Lower(a,n) lower_bound(((vector<ll>)a).begin(), (a).end(),(int) n) - a.begin();
using namespace std;
using ll = long long;
using ld = long double;
typedef pair<ll, ll> PLL;
typedef pair<int, int> PII;


long long INF = 9223372036854775807;
int dx[4] = { 0,1,0,-1 }; int dy[4] = { 1,0,-1,0 };
string EIKO = "abcdefghijklmnopqrstuvwxyz";

template<typename T>
T gcd(T  a, T b) {
	if (a % b == 0) {
		return b;
	}
	else {
		return gcd(b, a % b);
	}
}

ll Pow(ll a, ll n) {
	if (n == 0) return 1;
	if (n == 1) return a;
	if (n % 2 == 1) return (a * Pow(a, n - 1));
	ll t = Pow(a, n / 2);
	return (t * t);
}
ll U = Pow(10, 9) + 7;
template<typename T>
ll kuraiwa(T n) {
	int x = 0; ll y = 0;
	while (n != 0)
	{
		y += (n % 10);
		n /= 10;
		x++;
	}
	return y;
}

template<typename T>
long long modPow(T a, T n, T p) {
	if (n == 0) return 1;
	if (n == 1) return a % p;
	if (n % 2 == 1) return (a * modPow(a, n - 1, p)) % p;
	long long t = modPow(a, n / 2, p);
	return (t * t) % p;
}

template<typename T>
vector<int> bittify(T n) {
	vector<int> a;
	while (n != 0) {
		int s = n % 2;
		a.push_back(s);
		n /= 2;
	}
	return a;
}

template<typename T>
ll sinsuu(T xyz, T yzx, T abc) {
	ll b = 0, h = 0;
	while (abc != 0) {
		int g = abc % 10;
		abc /= 10;
		b += g * Pow(xyz, h);
		h++;
	}
	if (yzx == 10) {
		return b;
	}
	ll c = 0; h = 0;
	while (b != 0) {
		c += (b % yzx) * Pow(10, h);
		h++;
	}
	return c;
}


template<typename T>
bool sosuu(T x) {
	for (int i = 2; i * i <= x;i++) {
		if (x % i == 0)
			return false;
	}
	return true;
}

template<typename T>
vector<ll> bunnkai(T x) {
	vector<ll> a;
	ll n = 2;
	while (x != 1) {
		while (x % n == 0) {
			a.push_back(n);
			x /= n;
			if (x == 1)
				break;
		}
		if (n >= sqrt(x))
			break;
		n++;
	}
	if (x != 1)
		a.push_back(x);
	return a;
}

template<typename T>
vector<ll> yakusuu(T x) {
	vector<ll> a;
	for (ll i = 1; i * i <= x; i++) {
		if (x % i == 0) {
			a.push_back(i);
			if (i != x / i) {
				a.push_back(x / i);
			}
		}
	}
	sort(ALL(a));
	return a;
}


template<typename T>
unsigned int factorial(T n) {
	unsigned int ans;

	ans = 1;
	for (unsigned int i = 2; i <= n; i++) {
		ans *= i;
	}

	return ans;
}

int main() {
	int h, w; cin >> h >> w;
	if (h == 1 or w == 1) {
		cout << 0 << endl;
		rep(i, h) {
			rep(j, w) {
				cout << 0;
				if (j == w - 1)cout << endl;
				else
					cout << ' ';
			}
		}
	}
	else {
		if (h % 2 == 0 and w % 2 == 0) {
			cout << h * w << endl;
			rep(i, h) {
				rep(j, w) {
					cout << 1;
					if (j == w - 1)cout << endl;
					else
						cout << ' ';
				}
			}
		}
		if (h % 2 == 0 and w%2==1) {
			cout << h * (w - 1) << endl;
			rep(i, h) {
				rep(j, w) {
					if (j == 0)
						cout << 0;
					else {
						cout << 1;
					}
					if (j == w - 1)cout << endl;
					else
						cout << ' ';
				}
			}
		}
		if (h%2==1 and w % 2 == 0) {
			cout << (h - 1) * w << endl;
			rep(i, h) {
				rep(j, w) {
					if (i == 0)
						cout << 0;
					else
						cout << 1;
					if (j == w - 1)cout << endl;
					else
						cout << ' ';
				}
			}
		}
		if(h%2==1 and w%2==1) {
			cout << h*w-max(h,w) << endl;
			rep(i, h) {
				rep(j, w) {
					if ((i==0 and j==0) or(i-j==1 and (i+j)%4==3) or(j-i==1 and (i+j)%4==3) or (h>w and j==0 and i>=w) or (h<w and i==0 and j>=h))
						cout << 0;
					else
						cout << 1;
					if (j == w - 1)cout << endl;
					else
						cout << ' ';
				}
			}
		}
	}
}
0