题解 2840: 向量点积计算 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e3+5;ll …… 题解列表 2024年04月13日 0 点赞 0 评论 143 浏览 评分:0.0
2840: 向量点积计算 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e3+5;ll …… 题解列表 2024年04月13日 0 点赞 0 评论 183 浏览 评分:0.0
求三个数的最大值 摘要:解题思路:使用三目运算符运算更加简便注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,max; scanf("%d %d %d",&a,&b,&c); …… 题解列表 2024年04月13日 0 点赞 0 评论 120 浏览 评分:0.0
优先队列(根据每次加人各项目会产生多少增益) 摘要:```cpp #include #include #include using namespace std; const int N = 1e5 + 10; struct money …… 题解列表 2024年04月13日 0 点赞 0 评论 205 浏览 评分:0.0
题解 2804: 与指定数字相同的数的个数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e5+5;int…… 题解列表 2024年04月13日 0 点赞 0 评论 122 浏览 评分:0.0
无聊的星期六 摘要:z=input() z=z.split() max=0 for i in range(len(z)): if len(z[max])<len(z[i]): max=i…… 题解列表 2024年04月14日 0 点赞 0 评论 202 浏览 评分:0.0
无聊的星期六 摘要:凑字数:----------------------------------------------------------------------------------------z=input(…… 题解列表 2024年04月14日 0 点赞 0 评论 154 浏览 评分:0.0
无聊的星期六 摘要:z = [str(x) for x in [input() for _ in range(3)]] z.sort() print('\n'.join(map(str, z)))…… 题解列表 2024年04月14日 0 点赞 0 评论 226 浏览 评分:0.0
编写题解 1124: C语言训练-大、小写问题 摘要:解题思路:一位一位分析看是否属于A~Z,注意事项:参考代码:int main(){ char arr[101] = { 0 }; gets(arr); for (int i = 0;…… 题解列表 2024年04月14日 0 点赞 0 评论 308 浏览 评分:0.0
1131: C语言训练-斐波纳契数列 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;const int N=1e7;//定义常数typedef long long l…… 题解列表 2024年04月14日 0 点赞 0 评论 171 浏览 评分:0.0