diff --git a/QUSTOJ/1902.cpp b/QUSTOJ/1902.cpp new file mode 100644 index 0000000..37d3763 --- /dev/null +++ b/QUSTOJ/1902.cpp @@ -0,0 +1,39 @@ +#include +#include +using namespace std; + +inline void test() +{ + int n,m; + cin>>n>>m; + int** a=new int*[n]; + for(int i=0;i>a[i][j]; + } + } + for(int j=0;j>n; + while(n--) test(); + return 0; +}