#31518: 公式使用前提 a,b都為奇數


chenbaimu99@gmail.com (陳白目)

學校 : 不指定學校
編號 : 196076
來源 : [49.216.51.140]
最後登入時間 :
2022-08-02 10:58:13
c022. 10783 - Odd Sum -- UVa10783 | From: [49.216.23.178] | 發表日期 : 2022-08-05 16:19

#include <iostream>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(int argc, char** argv) 
{
  int T,a,b,i,count=1,sum;
    scanf("%d",&T);
    for(i=0;i<T;i++)  
    {
        scanf("%d",&a);
        scanf("%d",&b);
        
        if(a%2==0)    a++;
        if(b%2==0)    b--;
        sum=(a+b)*(b-a+2)/4;
        
        printf("Case %d: %d\n",count,sum);
        count++;
    }
  return 0;
}

 
ZeroJudge Forum