Mote8848
Mote8848
全部文章
noi
cf(7)
hdu(6)
Unity3D 学习笔记(2)
数据结构学习笔记(7)
未归档(7)
牛客(15)
菜鸡的acm(10)
归档
标签
去牛客网
登录
/
注册
弟弟tp的博客
一个菜鸡加臭弟弟
全部文章
/ noi
(共9篇)
大整数因子
原题链接:点我转移 #include<bits/stdc++.h> using namespace std; int main() { char c[31]; while(cin>>c) { int len = strlen(c...
2019-01-15
0
399
n的阶乘,大整数
和2的n次方基本一样,只不过是把2换出了变化的i了而已,其他的判断操类似 #include<bits/stdc++.h> using namespace std; int main() { int n; while(cin>>n) { ...
2019-01-15
0
366
noi 提取数字串按数值排序
原题链接:点我转移 #include<bits/stdc++.h> using namespace std; int main() { char str[400]; while(cin >> str) { int num[200...
2019-01-11
0
616
noi 2的n次方,大整数
原题链接:点我转移 #include<cstdio> #include<iostream> #include<cstring> #include<cmath> using namespace std; int a[10000]; int mai...
2019-01-09
0
404
noi 大整数减法
#include<stdio.h> #include<string.h> char a[205]; char b[205]; int main() { int a1,b1,i,n; while(scanf("%s %s",a,b)!=EOF...
2019-01-07
0
395
noi 大整数加法(多组输入)
此题用字符串读入就行,在转化成数组,模拟竖式加法就行,主要是注意前导0,还有0+0这种情况, #include<stdio.h> #include<string.h> int main() { char a[300],b[300]; while(scanf(&quo...
2019-01-07
0
387
noi 派
05:派 <dl class="problem-params"> <dt> 总时间限制: </dt> <dd> 1000ms </dd> <dt>...
2019-01-07
0
708
noi 八进制小数
1 #include <cmath> 2 #include <cstdio> 3 #include <cstring> 4 double n2=0; 5 char n1[20]; 6 int main() 7 { 8 scanf("...
2019-01-07
0
426
noi 大整数乘法
#include<bits/stdc++.h> using namespace std; int main() { char a[201],b[201]; while(cin>>a>>b) { int aa[201],bb[...
2019-01-07
0
533