数的划分 朴素的DFS 摘要:```cpp #include using namespace std; int n,k; int ans; void dfs(int step, int cur, int t) { …… 题解列表 2022年03月18日 0 点赞 0 评论 790 浏览 评分:9.2
题解 2080: 蓝桥杯基础练习-十六进制转八进制 摘要:解题思路:注意事项:直接上代码参考代码:n = input()d = int(n, 16)print(d)…… 题解列表 2022年03月18日 0 点赞 0 评论 544 浏览 评分:2.0
十六进制转十进制 摘要:```python n = input() d = int(n, 16) print(d) ```# MarkDown编辑器基本使用说明 **如果这是您第一次使用MarkDown编辑器,…… 题解列表 2022年03月18日 0 点赞 0 评论 578 浏览 评分:2.0
个人认为比较直观 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,x; scanf("%d",&x); a=x/100; b=x/10…… 题解列表 2022年03月18日 0 点赞 0 评论 408 浏览 评分:0.0
[编程入门]完数的判断(含解题思路) 摘要:##[编程入门]完数的判断 ```c #include int main() { int i,b[5000],p=0,s=0; int n,j; scanf("%d",&j); …… 题解列表 2022年03月18日 0 点赞 0 评论 565 浏览 评分:0.0
题目-翻硬币 摘要:参考代码:#include"bits/stdc++.h" using namespace std; bool a[11111]; bool b[11111]; long long ans…… 题解列表 2022年03月18日 0 点赞 0 评论 466 浏览 评分:0.0
蓝桥杯算法提高VIP-分数统计(利用stl易理解) 摘要:参考代码:#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; vector<int>…… 题解列表 2022年03月18日 0 点赞 0 评论 571 浏览 评分:0.0
利润计算 简单明了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d",&a); switch(a/100000) { …… 题解列表 2022年03月18日 0 点赞 0 评论 438 浏览 评分:9.9
[编程入门]阶乘求和 摘要:##[编程入门]阶乘求和 ```c #include int main() { long i,j,n,s=0,k; scanf("%d",&n); for(i=1;i…… 题解列表 2022年03月18日 0 点赞 0 评论 487 浏览 评分:0.0
暴力破解! 摘要:```cpp #include using namespace std; int ans = 0, n; const int N = 1000000; int arr[1000000…… 题解列表 2022年03月18日 0 点赞 0 评论 426 浏览 评分:0.0