_Abyss_
_Abyss_
全部文章
分类
归档
标签
去牛客网
登录
/
注册
_Abyss_的博客
全部文章
(共5篇)
题解 | #纯C,不使用库函数#
//基本思路:m进制转10进制再转n进制 #include <stdio.h> char list[36] = { '0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F','G','H','I','J','K','...
2023-03-17
0
315
题解 | #高精度运算#
#include <iostream> #include<string> using namespace std; string add(string A, string B) { //A, B为逆序 string C; int t = 0; for...
2023-03-16
0
221
题解 | #求root(N, k),内含证明#
//root(N, k) = N % (k - 1) #include <stdio.h> typedef long long LL; LL fast_pow(LL a, LL b, int mod) { LL res = 1; while(b > 0) { ...
2023-03-15
4
262
题解 | #质因数的个数#
#include <stdio.h> int main() { int x; while(scanf("%d", &x) != EOF) { int res = 0; for(int i = 2; i < x / i; i++) {...
2023-03-14
0
186
题解 | #手机键盘#
#include <stdio.h> #include <string.h> //abc def ghi jkl mno pqrs tuv wxyz //123 123 123 123 123 1234 123 1234 struct alpha{ int are...
2023-03-14
0
478