蓝桥杯算法提高VIP-高精度乘法-题解(Java代码) 摘要:```java import java.util.Scanner; import java.math.BigInteger; public class Main { public sta…… 题解列表 2020年02月17日 0 点赞 0 评论 560 浏览 评分:0.0
高精度乘法(sf11f) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;// 用字符串存储大数,避免数…… 题解列表 2025年06月05日 0 点赞 0 评论 25 浏览 评分:0.0
1583: 蓝桥杯算法提高VIP-高精度乘法 摘要:解题思路:注意事项: 注意数组设置大小,要尽量大参考代码:#include<stdio.h> #include<string.h> int main(){ char a1…… 题解列表 2024年11月15日 0 点赞 0 评论 130 浏览 评分:0.0
高精度乘法 摘要:#include"bits/stdc++.h" using namespace std; int main(){ string s1,s2; int a1[100000],a2…… 题解列表 2024年11月05日 0 点赞 0 评论 121 浏览 评分:0.0
高精度乘法,vector, 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<vector>using namespace std;vector<int> mul(const vector<in…… 题解列表 2023年09月21日 0 点赞 0 评论 127 浏览 评分:0.0
小南解题-高精度乘法--1行解决 摘要:'''12:19 2022/5/30,zgn946'''代码太简洁,显示内容太少不让发,容我浅浅的,废话几句哈a=int(input());c=int(…… 题解列表 2022年05月30日 0 点赞 0 评论 264 浏览 评分:0.0
Hifipsysta-1583-蓝桥杯算法提高VIP-高精度乘法(C++代码) 摘要: ```cpp #include #include #include using namespace std; const int MAXN=2e4; const int MMAXN=1…… 题解列表 2022年02月12日 0 点赞 0 评论 322 浏览 评分:0.0
蓝桥杯算法提高VIP-高精度乘法python(三行代码) 摘要:参考代码:x = int(input()) y = int(input()) print(x*y)…… 题解列表 2021年11月12日 0 点赞 0 评论 214 浏览 评分:0.0
Cpp简单解法 摘要:#思路 例如: 56 5 那么数字第一次 6*5 = 30 ,即数组[0]=30 第二次 5*5 = 25 ,数组[1] = 25 则: 30 % 10 = 0 , 进位 —— 3 …… 题解列表 2021年05月06日 0 点赞 0 评论 328 浏览 评分:0.0
蓝桥杯算法提高VIP-高精度乘法 (C语言代码) 高精度问题 摘要:解题思路:思路简单就是数组有点大注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[10000],b[10000]; sca…… 题解列表 2018年01月06日 0 点赞 1 评论 671 浏览 评分:0.0