题解列表

筛选

2950: 素数回文数的个数 Python简单实现

摘要:解题思路:分别判断是否为素数和回文判断回文的思路是,将整数转换为字符串,然后判断字符串的长度,依次比较首位和末位的值是否相等即可参考代码:# 判断是否为素数 def Prime(x):     f……

找树根和孩子(python)

摘要:解题思路:注意事项:参考代码:def find_root(tree):    # 找到根节点    nodes = set(tree.keys())    children = set()    fo……

题解 1952: 求长方形周长和面积

摘要:解题思路:  注意事项: 注意换行符参考代码:#include<stdio.h>int main(){//定义边长,宽,周长,面积的变量(正整数int)    int length,width,AAs……

数组逆序重放

摘要:解题思路:用两个数组注意事项:首项的下标加尾项的下标等于n+1参考代码:#include<stdio.h>int main(){    int n; scanf("%d",&n); int a[n],……

2919: 奖学金

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct student{   int xh,zf,a,b,c;} s[1000……

2888: 图像模糊处理

摘要:``` #include using namespace std; const int N=1000; double a[N][N],b[N][N]; int c[N][N]; int m……

编写题解 2764: 带余除法

摘要:解题思路:编写题解 2764: 带余除法注意事项:参考代码:x, y = map(eval,input().split())print(x//y,x%y,sep=" ")……