题解 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
题解 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: 检查金币 摘要:解题思路:注意事项:参考代码:while True: try: n=int(input()) for a in range(9,12): &nb 题解列表 2022年03月04日 0 点赞 1 评论 112 浏览 评分:4.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: 检查金币 摘要:解题思路:题目可以直接用10个for循环搞定,虽然代码不是很简洁,但思路简单。注意事项:参考代码:while True: try: n=int(input()) fo…… 题解列表 2023年02月03日 0 点赞 0 评论 93 浏览 评分:0.0
天才的两种解法 摘要:while True: try: # 从输入中读取一个6位的正整数,表示金币的总重量 k = int(input()) - 265716 # 减去初始值…… 题解列表 2023年10月17日 0 点赞 0 评论 122 浏览 评分:9.9
C++_dfs容易理解 摘要:解题思路:10个位置每个位置上找到满足的数放置注意事项:参考代码:#include <iostream>#include <cmath>using namespace std;int n;int ar…… 题解列表 2023年11月05日 0 点赞 1 评论 142 浏览 评分:10.0