2974: 统计字符数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e7;ll to…… 题解列表 2024年07月16日 0 点赞 0 评论 205 浏览 评分:0.0
题解 2974: 统计字符数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1001;ll to…… 题解列表 2024年07月16日 0 点赞 0 评论 160 浏览 评分:0.0
题解 2909: 直方图 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int tong[10002],n,a[10002];int main(){ ci…… 题解列表 2024年07月16日 0 点赞 0 评论 170 浏览 评分:0.0
题解 2909: 直方图 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;typedef long long ll;ll tong[10000];int n;ll a…… 题解列表 2024年07月16日 0 点赞 0 评论 177 浏览 评分:0.0
2909: 直方图 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;typedef long long ll;ll tong[10000];int n;ll a…… 题解列表 2024年07月16日 1 点赞 0 评论 167 浏览 评分:0.0
题解 2973: 出现次数超过一半的数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int n,tong[1003];int main(){ cin>>n; for(…… 题解列表 2024年07月16日 0 点赞 0 评论 161 浏览 评分:0.0
2955: 判决素数个数 摘要:解题思路:循环判断x到y有多少个质数注意事项:后面定义sum来累加计算 rutern不能写成cout MYdamn里是i …… 题解列表 2024年07月17日 0 点赞 0 评论 186 浏览 评分:0.0
简单易懂求Sn的值 摘要:解题思路:Sn=a+aa+aaa+...,可以看成是Sn=A1+A2+A3+....而A1=a*10^0, A2=A1+a*10^1, A3=a*10^2+A2,所以可以得出 An=a*1…… 题解列表 2024年07月17日 0 点赞 0 评论 296 浏览 评分:0.0
2835: 计算书费 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define N 10int main(){ int a[N]; float price; for(int i=0;…… 题解列表 2024年07月17日 0 点赞 0 评论 177 浏览 评分:0.0
2836: 数组逆序重放 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); int a[n]; int temp; …… 题解列表 2024年07月17日 0 点赞 0 评论 223 浏览 评分:0.0