摘要: 1 /* 2 PROG: nuggets 3 ID: jiafeim1 4 LANG: C++ 5 */ 6 7 #include <stdio.h> 8 #include <string.h> 9 #include <math.h>10 #include <algorithm>11 12 long gcd(long a,long b){13 return b?gcd(b,a%b):a;14 }15 16 int n;17 18 long count[12];19 bool can[65600]={false};20 int main()21 { 阅读全文
posted @ 2011-06-07 19:59 幻魇 阅读(303) 评论(0) 推荐(0) 编辑