2010年9月17日 星期五

ACM 10790 - How Many Points of Intersection?

#include <stdio.h>

int main()
{
long long n, m, total, caseNum = 0;
while (scanf("%lld %lld", &n, &m) == 2)
{
if (n == 0 && m == 0) break;
printf("Case %lld: %lld\n", ++caseNum, n * (n - 1) * m * (m - 1) / 4);
}
return 0;
}


回目錄
回首頁

沒有留言 :

張貼留言

Related Posts Plugin for WordPress, Blogger...