Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
139396 A班卞定熙 扫雷游戏 C++ 解答错误 10 42 MS 296 KB 617 2024-03-23 17:22:55

Tests(1/10):


#include<bits/stdc++.h> using namespace std; char a[102][102]; int b[102][102]; int main(){ int n,m; cin>>n>>m; for(int i=1;i<=n;i++){ for(int j=1;j<=m;j++){ cin>>a[i][j]; } } for(int i=1;i<=n;i++){ for(int j=1;j<=m;j++){ if(a[i][j]=='*'){ b[i][j-1]++; b[i][j+1]++; b[i-1][j]++; b[i-1][j-1]++; b[i-1][j+1]++; b[i+1][j]++; b[i+1][j-1]++; b[i+1][j+1]++; } } } for(int i=1;i<=n;i++){ for(int j=1;j<=m;j++){ if(a[i][j]!='*'){ cout<<b[i][j]; } else{ cout<<'*'; } cout<<endl; } } return 0; }


测评信息: