摘要: #include int main(){ int n, w, d, sum, ans, t; while(~scanf("%d%d%d%d", &n, &w, &d, &t)){ sum = n * (n-1) / 2 * w; ans = (sum - t) / d; ... 阅读全文
posted @ 2015-09-20 19:48 StevenLuke 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 这样的水题做他干嘛,我还提交5次才ac,马丹,我是来读英语来了 #include int main(){ int n; long a, b, c; scanf("%d", &n); while(n--){ scanf("%ld%ld%ld", &a, &b, &c); if(b-c>a) p... 阅读全文
posted @ 2015-09-20 19:26 StevenLuke 阅读(111) 评论(0) 推荐(0) 编辑
摘要: #include int main(){ int t, i, sum, num, n; scanf("%d", &t); while(t--){ scanf("%d", &n); sum = 0; for(i=0; i<n; i++){ ... 阅读全文
posted @ 2015-09-20 19:14 StevenLuke 阅读(144) 评论(0) 推荐(0) 编辑
摘要: min需要写为1000,写成0不行。fuck,#include #include int main(){ int n, max, min, i, num ,sum; while(~scanf("%d", &n)){ if(n==0) break; max = 0; ... 阅读全文
posted @ 2015-09-20 19:06 StevenLuke 阅读(119) 评论(0) 推荐(0) 编辑