题解列表

筛选

题解 2772: 苹果和虫子

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int x,y,n;    cin>>n>>x>>y;    i……

题解 2776: A*B问题

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int a,b;    cin>>a>>b;    cout<<……

与指定数字相同的数的个数

摘要:解题思路:使用for循环遍历列表注意事项:参考代码:n = int(input())c=0ls = list(map(int,input().split()))m = int(input())for ……

陶陶摘苹果

摘要:解题思路:注意事项:参考代码:ls = list(map(int,input().split()))h = int(input())c = 0for i in range(0,len(ls)):   ……

题目 3034: 自然数的拆分

摘要:算法介绍:        本题使用的算法为深度优先搜索算法(Depth-First-Search,DFS),该算法所遵循的策略如同名字一样,讲究一个“深”字,就是尽可能深的去搜锁所有的节点,直到把所有……

自定义函数之数字后移

摘要:解题思路:注意事项:参考代码:#include<stdio.h>void yd(int a[],int m,int n){    int i,b[n];    for(i=0;i<n;i++)    ……

reverse倒序列表

摘要:解题思路:注意事项:参考代码:n=int(input())nums=list(map(int,input().split())) nums.reverse()for i in nums:     pr……