勋谦
勋谦
全部文章
分类
归档
标签
去牛客网
登录
/
注册
勋谦的博客
全部文章
(共77篇)
题解 | #N的阶乘# 最短版本
#include <bits/stdc++.h> using namespace std; const int N = 1e5 + 10; int main(){ int n; while(cin >> n){ int a[N] = {0}; a[0] ...
2024-08-19
0
77
题解 | #a+b# 板子题acwing
#include <iostream> #include <vector> using namespace std; vector<int> add(vector<int> &A,vector<int> &B){ ve...
2024-08-19
0
65
题解 | #又一版 A+B# 模板+long long
#include <bits/stdc++.h> using namespace std; string convert(string s, int m, int b) { string ans; while (!s.empty()) { int k...
2024-08-18
0
98
题解 | #素数#
#include <bits/stdc++.h> using namespace std; bool isPrime(int n) { if(n == 1 || n == 0 || n < 0)return false; for(int i = 2; i &...
2024-08-18
0
92
题解 | #素数判定#
#include <bits/stdc++.h> using namespace std; bool isPrime(int n) { if(n == 1 || n == 0 || n < 0)return false; for(int i = 2; i &...
2024-08-18
0
93
题解 | #最大公约数#
#include <iostream> using namespace std; int gcd(int a,int b){ return b ? gcd(b,a % b):a; } int main(){ int a,b; while(cin >> a &...
2024-08-18
0
88
题解 | #数制转换#
#include <bits/stdc++.h> using namespace std; string convert(string s, int m, int b) { string ans; while (!s.empty()) { int k...
2024-08-18
0
74
题解 | #进制转换#
#include <iostream> using namespace std; int CharToInt(char c) { if (c >= '0' && c <= '9') return c - '0'; else return ...
2024-08-18
0
81
题解 | #八进制# 模板无敌了
#include <bits/stdc++.h> using namespace std; string convert(string s, int m, int b) { string ans; while (!s.empty()) { int k...
2024-08-18
0
73
题解 | #进制转换2# 模板
#include <bits/stdc++.h> using namespace std; string convert(string s, int m, int b) { string ans; while (!s.empty()) { int k...
2024-08-18
0
67
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页