题解列表
自定义函数之数字后移(Java代码)
摘要: import java.util.Scanner;
public class L1046 {
public static void main(String[] args)……
移动路线(Python)
摘要:解题思路:注意事项:参考代码:def countRoutes(m, n): dp = [[0] * (n+1) for _ in range(m+1)] # 初始化边界条件 for ……
编写题解 2794: 求平均年龄
摘要:解题思路:注意事项:需要注意多行输入的单行输入的情况参考代码:list1 = list(map(int,input().rsplit()))n = list1[0]list1.pop(0)while ……
编写题解 2796: 求整数的和与均值
摘要:解题思路:注意事项: 此题需要考虑一行输入和多行输入的情况参考代码:list1 = list(map(int,input().rsplit()))n = list1[0]list1.pop(0)wh……
超级楼梯(Python)
摘要:解题思路:注意事项:参考代码:def super_stair_ways(m): dp = [0] * (m + 1) dp[1] = 1 for i in range(2, m + ……
大数据因子 带解题思路
摘要:解题思路:注意事项:参考代码:c = int(input()) #输入数据k = [2, 3, 4, 5, 6, 7, 8, 9] #定义K……
题解 2908: 白细胞计数
摘要: #include
using namespace std;
int main(){
int n;
double o;
……