結果
問題 | No.1974 2x2 Flipper |
ユーザー | 👑 Nachia |
提出日時 | 2022-06-10 21:42:07 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 50 ms / 2,000 ms |
コード長 | 1,580 bytes |
コンパイル時間 | 2,498 ms |
コンパイル使用メモリ | 116,732 KB |
最終ジャッジ日時 | 2025-01-29 19:40:49 |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 25 |
ソースコード
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <map> #include <atcoder/modint> using namespace std; using i32 = int32_t; using u32 = uint32_t; using i64 = int64_t; using u64 = uint64_t; #define rep(i,n) for(int i=0; i<(int)(n); i++) const i64 INF = 1001001001001001001; using modint = atcoder::static_modint<1000000007>; int main(){ int H, W; cin >> H >> W; if(H % 2 == 0 && W % 2 == 0){ cout << (H*W) << '\n'; rep(y,H){ rep(x,W-1) cout << "1 "; cout << "1"; cout << '\n'; } } else if(H % 2 == 0){ cout << (H*(W-1)) << '\n'; rep(y,H){ rep(x,W-1) cout << "1 "; cout << "0"; cout << '\n'; } } else if(W % 2 == 0){ cout << ((H-1)*W) << '\n'; rep(y,H-1){ rep(x,W-1) cout << "1 "; cout << "1"; cout << '\n'; } rep(x,W-1) cout << "0 "; cout << "0"; cout << '\n'; } else{ cout << ((H*W)-max(H,W)) << '\n'; rep(y,H){ rep(x,W){ if(x) cout << " "; if(x == y) cout << "0"; else if(x == W-1 && y >= W) cout << "0"; else if(y == H-1 && x >= H) cout << "0"; else cout << "1"; } cout << '\n'; } } return 0; } struct ios_do_not_sync{ ios_do_not_sync(){ std::ios::sync_with_stdio(false); std::cin.tie(nullptr); } } ios_do_not_sync_instance;