题解列表
1492 蓝桥杯算法提高VIP-产生数
摘要:解题思路:无注意事项:无参考代码:#include<iostream>#include<cstring>using namespace std;int tag[10][10],d[10],p[1000……
1157题解(C语言)
摘要:```c
#include
// 函数 yue_shu 用于计算一个整数 n 的所有真约数(除了它本身)的和
int yue_shu(int n){
int sum = 0; //……
蓝桥杯2023年第十四届省赛真题-冶炼金属
摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int n; scanf("%d",&n); int max=1000000000,min=……
1162: 密码(遍历)
摘要:解题思路:注意事项:参考代码:#include<iostream>
using namespace std;
int main()
{
int m,cnt = 0;
string s, ……
简单易懂(c语言代码)
摘要:```c
#include
#include
int main() {
int n; // 用于存储测试用例的数量
int sign[4]; // 用于标记密码中……
python--study||O.o
摘要:参考代码:
def main():
n = int(input())
arr = [int(x) for x in input().split()]
find = in……
python--study||O.o
摘要:参考代码:
def main():
n = int(input())
t = dict()
mx = -1
for i in range(n):
&nb