#include<bits/stdc++.h>
using namespace std;
void solve(void){
int n,m;
cin>>n>>m;
for(int i=1;i<=n;i++){
for(int j=1;j<=m;j++)
cout<<"+";
cout<<endl;
}
cout << endl;
}
int main(){
int T;
cin>>T;
while(T--){
solve();
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
376 KB |
Expected integer, but "+++" found |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
14 ms |
376 KB |
Expected integer, but "+++++++++++++++++++++++++++++++++++++++++++++" found |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
376 KB |
Expected integer, but "+++" found |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
94 ms |
1372 KB |
Expected integer, but "+++++++++++++++++++++" found |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
67 ms |
1328 KB |
Expected integer, but "++++++++++++++++++++++++" found |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
376 KB |
Expected integer, but "+++" found |
2 |
Halted |
0 ms |
0 KB |
- |