平台: UVa Online Judge 題號: 1584 - Circular Sequence 題目連結: https://onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=448&page=show_probl ...
                            
                            
                                分类:
其他好文   时间:
2020-06-27 22:48:22   
                                阅读次数:
173
                             
                    
                        
                            
                            
                                    不墨迹 #include <iostream> #include <algorithm> using namespace std; const int maxn = 1e6; int a[maxn], b[maxn]; int main() { #ifndef ONLINE_JUDGE freope ...
                            
                            
                                分类:
其他好文   时间:
2020-06-26 18:16:06   
                                阅读次数:
64
                             
                    
                        
                            
                            
                                    A reversible prime in any number system is a prime whose "reverse" in that number system is also a prime. For example in the decimal system 73 is a re ...
                            
                            
                                分类:
其他好文   时间:
2020-06-24 19:28:08   
                                阅读次数:
55
                             
                    
                        
                            
                            
                                本题要求实现一个判断素数的简单函数、以及利用该函数计算给定区间内素数和的函数。 素数就是只能被1和自身整除的正整数。注意:1不是素数,2是素数。 函数接口定义: int prime( int p ); int PrimeSum( int m, int n ); 其中函数prime当用户传入参数p为素 ...
                            
                            
                                分类:
其他好文   时间:
2020-06-24 16:33:22   
                                阅读次数:
70
                             
                    
                        
                            
                            
                                    ?一、char类型 1.char类型存储的是整数而不是字符,例如:在ASCII中,65代表A; 2.标准ASCII范围为0-127;商用统一编码Unicode创建一个全球字符合集; 3.注意点:C语言把1字节定义为char类型占用的位数,因此在16位,32位,64位系统中都是可以用char类型的。有 ...
                            
                            
                                分类:
其他好文   时间:
2020-06-22 01:00:36   
                                阅读次数:
108
                             
                    
                        
                            
                            
                                    VMware Workstation Pro 15官方版下载:https://download3.vmware.com/software/wkst/file/VMware-workstation-full-15.5.0-14665864.exe VMware Workstation Pro 15 激 ...
                            
                            
                                分类:
系统相关   时间:
2020-06-20 22:28:37   
                                阅读次数:
455
                             
                    
                        
                            
                            
                                1.使用容联云,实现短信发送功能 下载好容联云sdk 2.然后再需要发送短信的地方,调用容联云接口即可 from .yuntongxun.sms import CCP ccp = CCP() ret = ccp.send_template_sms(mobile, [sms_code, sms_tim ...
                            
                            
                                分类:
编程语言   时间:
2020-06-20 15:51:49   
                                阅读次数:
61
                             
                    
                        
                            
                            
                                    先卸载之前的 卸载 点开之前安装的 文件.exe, 选择 remove,即卸载 打开注册表 “开始”->“运行”:输入“regedit” 然后找到并删除注册表中HKEY_CURRENT_USER\Software\psychology software\E-Prime”“HKEY_LOCAL_MAC ...
                            
                            
                                分类:
其他好文   时间:
2020-06-19 20:38:14   
                                阅读次数:
211
                             
                    
                        
                            
                            
                                题目: Joe works in a maze. Unfortunately, portions of the maze have caught on fire, and the owner of the maze neglected to create a fire escape plan. He ...
                            
                            
                                分类:
其他好文   时间:
2020-06-18 12:53:23   
                                阅读次数:
73
                             
                    
                        
                            
                            
                                    #include<bits/stdc++.h> using namespace std; int prime[5800000]; bool tag[100000000]; int tot = 0; int cnt=0; void Pr(int n) { memset(tag,0,sizeof tag ...
                            
                            
                                分类:
其他好文   时间:
2020-06-17 20:33:12   
                                阅读次数:
70