题解列表

筛选

编写题解 1268: P1001(python代码)

摘要:解题思路:注意事项:参考代码:def isprime(x):     ls=[1,3,7,9]     lis=[2,3,5,7]     if x <1:         return 0 ……

编写题解 1272: P1005

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

编写题解 1249: 简单编码

摘要:解题思路:注意事项:参考代码:dic={     &#39;A&#39;: &#39;I&#39;, &#39;W&#39;: &#39;I&#39;, &#39;F&#39;: &#39;I&#3……

编写题解 1250: 素数回文

摘要:解题思路:注意事项:参考代码:def isprime(x):     ls=[1,3,7,9]     lis=[2,3,5,7]     if 1<=x<=10:         if x ……

最简单易懂的

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

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

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

1256: 诡秘的余数

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

编写题解 1257: 超级楼梯

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