結果
問題 | No.2663 Zero-Sum Submatrices |
ユーザー |
|
提出日時 | 2022-12-19 01:08:17 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 358 bytes |
コンパイル時間 | 566 ms |
コンパイル使用メモリ | 66,324 KB |
最終ジャッジ日時 | 2025-02-09 16:31:38 |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 31 |
ソースコード
#include <iostream>int main() {std::ios::sync_with_stdio(false);std::cin.tie(nullptr);int n, m;std::cin >> n >> m;for (int i = 0; i < 1 << n; ++i) {for (int j = 0; j < 1 << m; ++j) {std::cout << 0;if (j + 1 != 1 << m) std::cout << ' ';}std::cout << '\n';}return 0;}