摘要:
Phone ListTime Limit: 2 Sec Memory Limit: 64 MBSubmit: 774 Solved: 149[Submit][Status][Discuss]DescriptionGiven a list of phone numb... 阅读全文
2018年3月29日
2018年3月26日
2018年3月24日
摘要:
#include#include#include#include #define U 1#define D 2#define L 3 #define R 4 //蛇的状态,U:上 ;D:下;L:左 R:右 typedef struct SNAKE //蛇身的一个节点{... 阅读全文
摘要:
#include"graphics.h"#include"time.h"#include"math.h"#include"dos.h"#include"conio.h"#define NULL 0#define False 0#define True 1#defin... 阅读全文
摘要:
CalendarTime Limit: 1 Sec Memory Limit: 64 MBSubmit: 351 Solved: 124[Submit][Status][Discuss]DescriptionA calendar is a system for m... 阅读全文
摘要:
int fast_pow(int a,int b,int c){ int ans=1; a%=c; while(b) { if(b&1) ans=a*ans%c; a=a*a%c; ... 阅读全文
摘要:
#include int main(){ int a[11]={0},i,j,k,m,max; for(i=1;imax) { max=a[i]; m=i; } } pri... 阅读全文
摘要:
#include int main(){ int a[1001]={0}; int i,j; for(i=2;i<=1000;i++) { if(a[i]==0) { for(j=i+i;j<=1... 阅读全文