2016年8月21日

UVA 10976 Fractions Again?! 简单枚举题

摘要: #include struct pairs{ int x,y; }; struct pairs pairs[10000]; int judge(int k,int i){ if((k*i)%(i-k)==0) return 1; else return 0; } int main(){ int k,count; while(scanf(... 阅读全文

posted @ 2016-08-21 18:33 SijingLin 阅读(155) 评论(0) 推荐(0) 编辑

UVa 11059 Maximum Product(简单枚举7.1)使用longlong,输出格式%lld

摘要: 这题数据最大18位,应该用Long long 粗心在几个地方(函数返回值,中间比较值max pro)用了Int,提交了好几次 阅读全文

posted @ 2016-08-21 17:39 SijingLin 阅读(150) 评论(0) 推荐(0) 编辑

导航