GMRCCC
GMRCCC
全部文章
分类
题解(3)
归档
标签
去牛客网
登录
/
注册
GMRCCC的博客
全部文章
(共3篇)
题解 | #约数的个数#
每个输入的n, 对sqrt(n)以下的进行判断,若存在一个约数,则大于sqrt(n)的也有一个约数,每次+2即可 对sqrt(n)的边界值单独判断,若sqrt(n)*sqrt(n)刚好等于n本身,则需要减去一个计数(sqrt(n)算了两次) #include <iostr...
C++
2022-02-14
5
443
题解 | #奥运排序问题#
用结构体排序也能做,只是稍微麻烦一些,对每种排名方式均要进行一次排序 #include <iostream> #include<algorithm> #include<malloc.h> using namespace std; st...
C++
2022-02-10
14
508
题解 | #反序数#
#include <stdio.h> int main() { int a, b, c, d; for (a = 1; a <= 9; a++) { for (b = 0; b <= 9; b++) { for (c = 0; c <= 9; c++) { for (d...
C
2022-01-11
0
386