题解列表
查字典写DNA——C语言
摘要:解题思路:根据第二个5 4数据给的案例可以看出,DNA是按照x x x x x x x循环四次最后再加上第一行;因此只要把这个形状保存后循环四次最后再输出一遍第一行就行了。注意事项:这里的x是大……
题解 1807: [编程基础]输入输出练习之格式控制
摘要:解题思路:使用format 格式化函数注意事项:< 左对齐8d 占8位参考代码:a,b,c=map(int,input().split())print('{:<8d}{:<8d}{:<8d}&……
1743: 大整数排序 (java的两种实现)
摘要:原题: [https://www.dotcpp.com/oj/problem1743.html](https://www.dotcpp.com/oj/problem1743.html)
- 思路……
蓝桥杯算法提高VIP-打水问题(Python)
摘要:解题思路:注意事项:参考代码:N,M=map(int,input().split())
a=list(map(int,input().split()))
a.sort()
water=[[0 f……
蓝桥杯2020年第十一届省赛真题-字符串编码(Python)
摘要:解题思路:注意事项:参考代码:s = input()ans = ''i = 0while i<len(s): if i+1>=len(s) or int(s[i])>2: ……
蓝桥杯2020年第十一届省赛真题-分类计数
摘要:解题思路:注意事项:参考代码:s = input()A_num = 0a_num = 0dig_num = 0for i in s: if i.isalnum(): if i.is……
1083 Hello, world!
摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {……
蓝桥杯2020年第十一届省赛真题-数字三角形
摘要:
#include
using namespace std;
int a[1000][1000], b[1000][1000];
int n;
……