题解列表

筛选

编写题解 1257: 超级楼梯

摘要:解题思路:参考代码:def f(x):     if x <= 2:         return 1      else:         return f(x-1) 

1256: 诡秘的余数

摘要:解题思路:注意事项:参考代码:while True:     try:         a,b=map(int,input().split())         if a<b:        ……

值域分块题解

摘要:这个有什么用:[[Ynoi2019 模拟赛] Yuno loves sqrt technology II](https://www.luogu.com.cn/problem/P5047) 。 O……

编写题解 1251: 统计字母个数

摘要:解题思路:注意事项:参考代码:stri=&#39;&#39; while True:     try:         stg=&#39;&#39;         sti=map(str,i……

最简单易懂的

摘要:解题思路:注意事项:参考代码:#include <stdio.h> //N为总行数,rows为第几行,打印该行数据void printN(int N, int rows){ int first=1;……