C++_dfs容易理解 摘要:解题思路:10个位置每个位置上找到满足的数放置注意事项:参考代码:#include <iostream>#include <cmath>using namespace std;int n;int ar…… 题解列表 2023年11月05日 0 点赞 1 评论 142 浏览 评分:10.0
天才的两种解法 摘要:while True: try: # 从输入中读取一个6位的正整数,表示金币的总重量 k = int(input()) - 265716 # 减去初始值…… 题解列表 2023年10月17日 0 点赞 0 评论 122 浏览 评分:9.9
1235: 检查金币 摘要:解题思路:题目可以直接用10个for循环搞定,虽然代码不是很简洁,但思路简单。注意事项:参考代码:while True: try: n=int(input()) fo…… 题解列表 2023年02月03日 0 点赞 0 评论 93 浏览 评分:0.0
1235: 检查金币 摘要:```cpp #include #include #include using namespace std; int w,r[10]={1,3,9,27,81,243,729,2187,65…… 题解列表 2023年01月13日 0 点赞 0 评论 157 浏览 评分:7.0
编写题解 1235: 检查金币 摘要:解题思路:注意事项:参考代码:while True: try: n=int(input()) for a in range(9,12): &nb 题解列表 2022年03月04日 0 点赞 1 评论 112 浏览 评分:4.0
题解 1235: 检查金币 摘要:参考代码:#include<stdio.h>#include<string.h>#include<math.h>int main(){ int x; while(scanf("%d",&x…… 题解列表 2021年07月02日 0 点赞 0 评论 252 浏览 评分:0.0
题解 1235: 检查金币(C++代码)使用STL容器vector和map,深搜 摘要:解题思路:注意事项:参考代码:#include <iostream> #include<map> #include<vector> using namespace std; map<int,v…… 题解列表 2021年04月21日 0 点赞 0 评论 398 浏览 评分:4.7
检查金币-题解(C++代码) 摘要:```cpp #include using namespace std; int w,r[10]={1,3,9,27,81,243,729,2187,6561,19683}; int fla…… 题解列表 2020年03月30日 0 点赞 0 评论 318 浏览 评分:0.0
检查金币 百钱百鸡问题 摘要: #include using namespace std; int main(){ int n; while(cin>>n){ int flag = 1; for (…… 题解列表 2020年03月25日 0 点赞 0 评论 403 浏览 评分:8.5
检查金币-题解(C语言代码)满分代码!1 摘要: #include #include #define B 265716 int main() { int weight,value,…… 题解列表 2019年12月03日 0 点赞 0 评论 910 浏览 评分:7.7