蓝桥杯2023年第十四届省赛真题-冶炼金属 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int n; scanf("%d",&n); int max=1000000000,min=…… 题解列表 2024年08月31日 0 点赞 0 评论 599 浏览 评分:10.0
关键在于l和r的求法公式 摘要:参考代码:#include<bits/stdc++.h> using namespace std; #define int long long signed main() { int n;…… 题解列表 2024年10月07日 2 点赞 0 评论 490 浏览 评分:10.0
编写题解 3150: 蓝桥杯2023年第十四届省赛真题-冶炼金属(注释清晰,简单易懂) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int N;&nb…… 题解列表 2025年01月13日 6 点赞 0 评论 776 浏览 评分:10.0
转化为数学问题 摘要:解题思路:A/(B+1)+1<V<A/B注意事项:参考代码:#include<stdio.h>int main (){int i,n,min=-1,max=999999999,…… 题解列表 2025年02月23日 5 点赞 0 评论 692 浏览 评分:10.0
O(N)的时间复杂度 摘要:解题思路:获取每段记录的范围互相比较取交集参考代码:import java.util.Scanner;public class Main{ public static voi…… 题解列表 2025年03月07日 1 点赞 0 评论 622 浏览 评分:10.0