08 2014 档案

摘要:#include #include long long dp[12][2050];int ms,h,w;bool check(int x){ while(x){ if((x&3)==3) x=x>>2; else if(x&1) return 0; else x=x>>1; } return ... 阅读全文
posted @ 2014-08-31 13:47 Netop 阅读(182) 评论(0) 推荐(0)
摘要:#include #include int main(){ printf("sleeping\n"); Sleep(3*1000); printf("sleep end\n"); return 0;}#include #include inline void delay(float);int mai... 阅读全文
posted @ 2014-08-19 09:52 Netop 阅读(509) 评论(0) 推荐(0)