描述 水仙花数的定义是,这个数等于他每一位数上的幂次之和 见维基百科的定义 比如一个3位的十进制整数153就是一个水仙花数。因为 153 = 13 + 53 + 33。 而一个4位的十进制数1634也是一个水仙花数,因为 1634 = 14 + 64 + 34 + 44。 给出n,找到所有的n位十进 ...
分类:
编程语言 时间:
2020-04-22 10:22:05
阅读次数:
128
print(ord("a")) #输出ascii码对应的数字 print(pow(10,3)) #输出10**3 print(pow(10,3,3)) #输出10的三次方,再对3取余数 l=[3,4,5,6] print(list(reversed(l))) #输出[6, 5, 4, 3],反转功能 ...
分类:
其他好文 时间:
2020-04-21 18:42:48
阅读次数:
62
1 class Solution 2 { 3 public: 4 bool isPowerOfFour(int num) 5 { 6 return (num > 0) && ((num & (-num)) == num) && (num % 3 == 1); 7 } 8 }; ...
分类:
其他好文 时间:
2020-04-21 18:10:19
阅读次数:
35
#include<stdio.h>#include<math.h>#definePI3.14159265358979voidmain(){doublex=4.0,y=3.0,e=1.0,r,h;intn,i=0;while(1){printf("1-Ball\n");printf("2-Cylinder\n");printf("3-Cone\n");printf("othe
分类:
其他好文 时间:
2020-04-17 18:32:07
阅读次数:
178
5G商用已在全球分蘖蔓延成燎原之势,对于广大吃瓜群众来说,是时候体验5G飞一样的网速了!那么问题来了:如果买了5G手机,能达到的理论速率到底是多少呢?
分类:
移动开发 时间:
2020-04-17 09:22:26
阅读次数:
219
https://www.luogu.com.cn/problem/P3747 已经记不请上一次遇到扩展欧拉定理是什么时候了。 $a^b~mod~p=$ $bp0$后,都和$cnt=p0+1$时的值一样 注意是和$cnt=p0+1$时的值一样,为了方便,多开一位: 用线段树维护区间$cnt$最小值,如 ...
分类:
其他好文 时间:
2020-04-16 22:10:59
阅读次数:
72
{".3gp", "video/3gpp"}, {".apk", "application/vnd.android.package-archive"}, {".asf", "video/x-ms-asf"}, {".avi", "video/x-msvideo"}, {".bin", "applic ...
分类:
Web程序 时间:
2020-04-15 10:46:38
阅读次数:
62
1 uchar c; 2 c=8; 3 if(num%2==0) 4 c=7; 5 if(n>=8&&temp!=255) 6 n=n-c; //2 为7 3 为8 4 为7 5为8 7 temp+=pow(2,n); 8 n+=num; 9 P1=~temp; 10 delay(200); 这是点 ...
分类:
其他好文 时间:
2020-04-13 19:48:27
阅读次数:
66
608.树节点 思路 三种分类点的特性: Root:p_id为空;Inner:既有p_id又是别人的p_id;Leaf:剩下的。 所以代码: 612. 平面上的最近距离 思路: 将两个表自联结,用POWER(,2)算距离,作为dist。甩掉dist=0的行(这里只能用HAVING),而我暂时还不知原 ...
分类:
数据库 时间:
2020-04-13 00:26:15
阅读次数:
85