結果

問題 No.1974 2x2 Flipper
ユーザー 沙耶花沙耶花
提出日時 2022-06-10 21:37:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 730 bytes
コンパイル時間 4,289 ms
コンパイル使用メモリ 262,036 KB
実行使用メモリ 7,552 KB
最終ジャッジ日時 2024-09-21 06:04:06
合計ジャッジ時間 8,605 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 10 ms
6,944 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 49 ms
6,940 KB
testcase_04 AC 23 ms
6,944 KB
testcase_05 RE -
testcase_06 AC 38 ms
6,940 KB
testcase_07 AC 24 ms
6,940 KB
testcase_08 AC 7 ms
6,940 KB
testcase_09 AC 37 ms
6,944 KB
testcase_10 RE -
testcase_11 AC 28 ms
6,944 KB
testcase_12 AC 50 ms
6,944 KB
testcase_13 AC 30 ms
6,940 KB
testcase_14 AC 18 ms
6,940 KB
testcase_15 AC 57 ms
6,940 KB
testcase_16 RE -
testcase_17 AC 43 ms
6,944 KB
testcase_18 AC 6 ms
6,944 KB
testcase_19 AC 7 ms
6,940 KB
testcase_20 AC 23 ms
6,944 KB
testcase_21 AC 72 ms
7,552 KB
testcase_22 AC 72 ms
7,424 KB
testcase_23 AC 73 ms
7,424 KB
testcase_24 RE -
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){
		rep(i,2){
			rep(j,2){
				a[h-1-i][w-1-j] ^= 1;
			}
		}
		assert(false);
	}
	
	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