主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
勋谦
2024年6月29日 18:23
计算Sn 题解:
P1043
回复 0
|
赞 0
|
浏览 536
#include <iostream> using namespace std; typedef long long LL; int main(){ int x,n; cin >> x >> n; LL ans = 0,t = 0; for(int i = 1;i <= n;i ++){ t = t * 10 + x; ans = ans + t; } cout << ans << endl; return 0; } &n...
我与代码的故事
2024年4月20日 23:58
计算Sn (模拟,注意数据范围)题解:
P1043
回复 0
|
赞 1
|
浏览 574
#include<bits/stdc++.h> using namespace std; typedef long long LL; int x, n; LL ans; int main() { cin >> x >> n; LL t = 0; for(int i = 1; i <= n; i ++) { t = (t * 10 + x); ans += t; } cout << ans; return 0; }
likejjj
2024年3月21日 15:40
计算Sn 题解:
P1043
回复 0
|
赞 0
|
浏览 585
#include<bits/stdc++.h> using namespace std; int main() { int n,m; cin >> n >> m; int tmp = n; int ans = 0; while(m--) { ...
lingdongyang
2024年3月14日 16:19
计算Sn 题解:
P1043
回复 0
|
赞 1
|
浏览 724
#include<stdio.h> int main() { int a, n; scanf("%d %d", &a, &n); int sum = 0; int t = a;//注意找规律a aa aaa 为a*10 再加上他本来的数而不是a变后的值 for (int i = 0; i < n; i++) { sum = sum + a; a = a * 10 + t; } printf("%d",sum); return 0; }
小酒
2024年3月11日 15:50
计算Sn 题解:
P1043
回复 0
|
赞 0
|
浏览 635
1043解题思路 #include <stdio.h> int main() { int n; int x; int count=0; int sum=0; scanf("%d %d",&x,&n); for(int i=1;i<=n;i++) { ...
tianyz
2023年7月27日 14:25
计算Sn 题解:
P1043
回复 0
|
赞 0
|
浏览 1.5k
#include <bits/stdc++.h> using namespace std; int a, n, res; int main() { cin >> a >> n; int c = a; for (int i = 1; i <= n; i ++) { res += a; a = a * 10 + c; } cout << res; return 0; }
天妒英才
2023年6月21日 18:42
计算Sn 题解:
P1043
回复 0
|
赞 2
|
浏览 1.5k
本题实质为n-(n-1)个a*10的n-1次方加上n-(n-2)个a*10的n-2次方加上...依次类推,因此可以考虑使用双层循环嵌套方法来解题,虽然时间复杂的为O(n*n),但是思路比较简单,易于理解。 以下为源代码,采用c++: #include<iostream> #include<math.h> using namespace std; int main(){ int a,n; cin>>a>>n; &n...
猪蹄子全是肉
2023年5月4日 16:10
计算Sn 题解:
P1043
回复 0
|
赞 1
|
浏览 1.2k
#include <iostream> #include <algorithm> #include <cmath> using namespace std; int n, m, res, nn; // n 存储输入的数字,m 存储数字位数,res 存储结果,nn 用于存储计算中间值 int main() { cin >> n >> m; // 输入需要计算的数字和位数 for (int i = 0; i < m; i ++) ...
旅人丶oc
2023年3月22日 20:54
S=a+aa+aaa+aaaa+......
P1043
回复 0
|
赞 2
|
浏览 3.5k
#include int main(){ int sum=0,x=0; int count=1; int a,n; scanf("%d %d",&a,&n); &n...
huangdashuaige
2023年2月15日 21:23
P1043题解
P1043
回复 0
|
赞 1
|
浏览 3.8k
#include <iostream> using namespace std; int main( ) { int a,n; //定义a,n整型变量 cin>>a>>n; //输入描述 int sum=a; //引入sum,用于记录a到aaaa... int Sn=a; //用于记录数据值相加的结果 for(int i=1;i<n...
1
2
题目
计算Sn
题解数量
17
发布题解
热门题解
1
S=a+aa+aaa+aaaa+......
2
计算Sn 题解:
3
1043(13行解决)
4
计算Sn(c++)
5
计算Sn 题解:
6
非常简单也容易理解的题解
7
P1043题解
8
计算Sn 题解:
9
求和计算
10
计算Sn (模拟,注意数据范围)题解: