2894: 肿瘤检测 摘要:解题思路:注意事项:参考代码:n = int(input())l = [list(map(int,input().split())) for i in range(n)]an = 0ln = 0s =…… 题解列表 2024年08月05日 0 点赞 0 评论 71 浏览 评分:0.0
python--study||O.o 摘要:参考代码:dx = (-1, 0, 1, 0) dy = (0, -1, 0, 1) def judge(x, y): if x == 0 or x == n - 1 or y …… 题解列表 2024年04月17日 0 点赞 0 评论 83 浏览 评分:0.0
2894:肿瘤检测 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main{ /** * @param args */ public static void m…… 题解列表 2023年12月21日 1 点赞 0 评论 73 浏览 评分:0.0
肿瘤检测(注意肿瘤中的点如果在边界上,也算是周长) 摘要:解题思路:理解题意之后,if表达式里或就完事了注意事项:参考代码:#include<stdio.h> int main() { int n; scanf("%d",&n); int a…… 题解列表 2023年10月15日 0 点赞 0 评论 130 浏览 评分:0.0
2894:肿瘤检测 摘要:解题思路:注意事项:要考虑数组边界的数参考代码:#include<iostream>using namespace std;int main() { int m, n; int i, j, k = 0…… 题解列表 2023年05月19日 0 点赞 0 评论 91 浏览 评分:7.8
2894: 肿瘤检测 摘要:```cpp #include using namespace std; int main() { int a[101][101],n,s=0,c=0; cin>>n; …… 题解列表 2023年01月11日 0 点赞 0 评论 174 浏览 评分:9.9