编号 | 题目 | 状态 | 分数 | 总时间 | 内存 | 代码 / 答案文件 | 提交者 | 提交时间 |
---|---|---|---|---|---|---|---|---|
#5212 | #1033. 电子钱包 | Compile Error | 0 | 0 ms | 0 K | C++ 17 (Clang) / 838 B | t330026229 | 2024-02-25 16:58:51 |
using namespace std;
const int N = 1e5 + 10;
int n, m, k, a, ans = 0, row;
void
int
编译信息
/sandbox/1/a.cpp:19:28: error: use of undeclared identifier 'x'
int temp=a[x][y];
^
/sandbox/1/a.cpp:19:31: error: use of undeclared identifier 'y'
int temp=a[x][y];
^
/sandbox/1/a.cpp:20:29: error: use of undeclared identifier 'x'
row[i]=1, a[x][y]=0;
^
/sandbox/1/a.cpp:20:32: error: use of undeclared identifier 'y'
row[i]=1, a[x][y]=0;
^
/sandbox/1/a.cpp:22:29: error: use of undeclared identifier 'x'
row[i]=0, a[x][y]=temp;
^
/sandbox/1/a.cpp:22:32: error: use of undeclared identifier 'y'
row[i]=0, a[x][y]=temp;
^
6 errors generated.