题解 2907: 不与最大数相同的数字之和 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ long long a,b[1000],sum=0; scanf(&qu…… 题解列表 2025年01月27日 1 点赞 0 评论 154 浏览 评分:0.0
作业调度方案(模拟) 摘要:解题思路: 模拟注意事项:参考代码:#include<iostream>usingnamespacestd;constintN&nb…… 题解列表 2025年01月28日 0 点赞 0 评论 123 浏览 评分:0.0
倒杨辉三角形(递推) 摘要:解题思路:递推注意事项:参考代码:#include<iostream>#include<iomanip>usingnamespacestd;…… 题解列表 2025年01月29日 0 点赞 0 评论 181 浏览 评分:0.0
假币问题(模拟,分治) 摘要:解题思路:模拟注意事项:参考代码:#include<iostream>usingnamespacestd;intmain(){ int&…… 题解列表 2025年01月29日 0 点赞 0 评论 167 浏览 评分:0.0
做幻方(模拟) 摘要:解题思路:模拟注意事项:宽度设置参考代码:#include<iostream>#include<iomanip>usingnamespace&n…… 题解列表 2025年01月29日 0 点赞 0 评论 118 浏览 评分:0.0
内码对称(移位 数组 回文) 摘要:解题思路:移位 数组 回文注意事项:参考代码:#include<iostream>#include<iomanip>usingnamespace…… 题解列表 2025年01月29日 0 点赞 0 评论 104 浏览 评分:0.0
剔除相关数(字典) 摘要:解题思路: 字典排重 排序输出注意事项:参考代码:#include<iostream>#include<algorithm>#include<map&…… 题解列表 2025年01月29日 0 点赞 0 评论 174 浏览 评分:0.0
2609——蓝桥杯2021年第十二届省赛真题-时间显示 摘要:解题思路: 去掉毫秒,从右边拆数(60进制)注意事项: 小时到天是24进制,{:0>2} 表示右对齐占2位不足时补0参考代码:n = int(input())n = n // 100…… 题解列表 2025年01月30日 0 点赞 0 评论 199 浏览 评分:0.0
简单易于理解的完数的判断问题——Python 摘要:解题思路: 1.从6开始循环能够减少运行时间 2.通过pow()函数,只需要对完数进行求根,研究一半即可 &…… 题解列表 2025年01月31日 0 点赞 0 评论 439 浏览 评分:0.0
自由下落的距离问题——Python 摘要:解题思路:注意事项:参考代码:a,b=map(int,input().strip().split())h=a*1/2**bs=aforiinrange(…… 题解列表 2025年01月31日 0 点赞 0 评论 417 浏览 评分:0.0