QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#218512 | #6743. water235 | retr0 | Compile Error | / | / | C++14 | 677b | 2023-10-18 14:19:50 | 2023-10-18 14:19:51 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
int main() {
int n, m; cin >> n >> m;
int ans = 1;
vector<vector<int>> a(n, vector<int>(m));
for(int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (i == j) a[i][j] = 1, ans++;
}
}
if(n != m) {
if(n > m) {
a[n - 1][0] = 1;
ans++;
}
if(n < m) {
a[0][m - 1] = 1;
ans++
}
}
cout << ans << '\n';
for(int i = 0; i < n; i++) {
for(int j = 0; j < m; j++) {
cout << a[i][j] << " ";
}
cout << '\n';
}
return 0;
}
詳細信息
answer.code: In function ‘int main()’: answer.code:20:18: error: expected ‘;’ before ‘}’ token 20 | ans++ | ^ | ; 21 | } | ~