結果
問題 | No.1974 2x2 Flipper |
ユーザー | otoshigo |
提出日時 | 2022-06-10 22:08:30 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,018 bytes |
コンパイル時間 | 2,498 ms |
コンパイル使用メモリ | 203,388 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-21 06:21:45 |
合計ジャッジ時間 | 6,691 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 9 ms
6,940 KB |
testcase_02 | AC | 3 ms
6,944 KB |
testcase_03 | AC | 44 ms
6,940 KB |
testcase_04 | AC | 21 ms
6,940 KB |
testcase_05 | WA | - |
testcase_06 | AC | 32 ms
6,940 KB |
testcase_07 | AC | 21 ms
6,940 KB |
testcase_08 | AC | 6 ms
6,940 KB |
testcase_09 | AC | 33 ms
6,940 KB |
testcase_10 | WA | - |
testcase_11 | AC | 26 ms
6,944 KB |
testcase_12 | AC | 44 ms
6,944 KB |
testcase_13 | AC | 27 ms
6,940 KB |
testcase_14 | AC | 18 ms
6,944 KB |
testcase_15 | AC | 51 ms
6,944 KB |
testcase_16 | WA | - |
testcase_17 | AC | 37 ms
6,940 KB |
testcase_18 | AC | 6 ms
6,940 KB |
testcase_19 | AC | 6 ms
6,944 KB |
testcase_20 | AC | 21 ms
6,940 KB |
testcase_21 | AC | 67 ms
6,944 KB |
testcase_22 | AC | 66 ms
6,944 KB |
testcase_23 | AC | 66 ms
6,940 KB |
testcase_24 | WA | - |
testcase_25 | AC | 2 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/modint> using namespace std; using namespace atcoder; using ll = long long; using mint = modint1000000007; #define rep(i,n) for (int i = 0; i < n; i++) #define rrep(i,n) for (int i = n-1; i >= 0; i--) #define rep2(i,a,b) for (int i = a; i < b; i++) #define rrep2(i,a,b) for (int i = a-1; i >= b; i--) #define rep3(i,a,b,c) for (int i = a; i < b; i+=c) #define rrep3(i,a,b,c) for (int i = a-1; i >= b; i-=c) #define all(v) v.begin(),v.end() #define rall(v) v.rbegin(),v.rend() template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;} template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;} int h,w; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); cin>>h>>w; if(h==1||w==1){ cout<<0<<"\n"; rep(i,h){ rep(j,w)cout<<0<<" "; cout<<"\n"; } }else{ if(h%2==1){ if(w%2==1){ cout<<(h-1)*(w-1)+2<<"\n"; rep(i,h){ rep(j,w)cout<<((i==h-1&&j<w-2)||(i==h-2&&j==w-2)||(j==w-1&&i<h-2)?0:1)<<" "; cout<<"\n"; } }else{ cout<<w*(h-1)<<"\n"; rep(i,h){ rep(j,w)cout<<(i<h-1?1:0)<<" "; cout<<"\n"; } } }else if(w%2==1){ if(h%2==1){ cout<<(h-1)*(w-1)+2<<"\n"; rep(i,h){ rep(j,w)cout<<((i==h-1&&j<w-2)||(i==h-2&&j==w-2)||(j==w-1&&i<h-2)?0:1)<<" "; cout<<"\n"; } }else{ cout<<h*(w-1)<<"\n"; rep(i,h){ rep(j,w)cout<<(j<w-1?1:0)<<" "; cout<<"\n"; } } }else{ cout<<h*w<<"\n"; rep(i,h){ rep(j,w)cout<<1<<" "; cout<<"\n"; } } } }