看看你有没有和我一样蠢到将某些:
for(int i=1;i<=n;i++){ for(int j=1;j<=m;j++){ // 略 } }
写成了
for(int i=1;i<=n;i++){ for(int j=1;j<=n;j++){ // 略 } }