快读快写+比较器+合并校验 摘要:直接拿到数据,根据 做左区间进行比较排序,然后记录可合并的最大值 与 全局最大值, 比较可合并最大值与全局最大值是否一致即可java快读快写模板参考代码:import java.io.*;import…… 题解列表 2024年12月01日 1 点赞 1 评论 167 浏览 评分:9.9
1009普通解题看看吧 摘要:解题思路:注意事项:注意把整型转换为字符串和l - 1就行了。参考代码:#include<stdio.h>#include<string.h>int main (){ int b; char a[10…… 题解列表 2024年12月01日 1 点赞 0 评论 1431 浏览 评分:10.0
话费计算 c语言超简单 摘要:解题思路:如下注意事项:记得结果是浮点形式输出,并保留1位小数参考代码:#include<stdio.h>int main(){ float sum; int min; sca…… 题解列表 2024年12月01日 0 点赞 0 评论 157 浏览 评分:0.0
[编程入门]链表合并 链表是什么? 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义一个结构体sss,包含两个整数成员x和y struct sss{…… 题解列表 2024年12月01日 1 点赞 0 评论 377 浏览 评分:0.0
[编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:a=int(input())for i in range(a): b=input().split() print(','.join(b))…… 题解列表 2024年12月01日 0 点赞 0 评论 563 浏览 评分:6.0
通俗易懂,简单明了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d,i,j,k; scanf("%d %d %c %d",&a,&b,&c,&d…… 题解列表 2024年12月01日 0 点赞 0 评论 145 浏览 评分:0.0
二叉树遍历(flist) 递归 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义两个字符串变量 string s1, s2; void kkk…… 题解列表 2024年12月01日 0 点赞 0 评论 126 浏览 评分:0.0
蓝桥杯2020年第十一届省赛真题-回文日期 摘要:解题思路:注意事项:参考代码:import java.util.*;public class Main{ static String date; static String date1; …… 题解列表 2024年12月01日 0 点赞 0 评论 313 浏览 评分:9.9
新人小白仅供参考 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int N; struct f{ char num[10]; char name[10]; …… 题解列表 2024年12月01日 1 点赞 0 评论 376 浏览 评分:2.0
拆分位数《三位数》 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; cin>>n; cout<<n%10<…… 题解列表 2024年12月01日 0 点赞 0 评论 520 浏览 评分:0.0