CSU 1507 超大型LED顯示屏

2021-07-04 09:25:46 字數 1399 閱讀 9581

description

input

輸入包含不超過100組資料。每組資料第一行為"start hh:mm:ss",表示比賽開始時刻為hh:mm:ss。最後一行為"end hh:mm:ss",即比賽結束時刻。二者之間至少會有乙個score資訊,格式為"score hh:mm:ss team score",其中team要麼是"home"(主場)要麼是"guest"(客場), score表示得分,為1,2或者3。這些資訊保證按照時間從早到晚的順序排列,且任意兩條score資訊的時刻均不相同。比賽開始時間不會早於9:00,結束時間不會晚於同一天的21:00。注意,如果比賽開始時間為09:00:00,結束時間為09:00:01,比賽長度為1秒鐘,而不是2秒鐘。

output

對於每組資料,輸出測試點編號和總耗電量。

sample input

start 09:00:00

score 09:01:05 home 2

score 09:10:07 guest 3

end 09:15:00

start 09:00:00

score 10:00:00 home 1

score 11:00:00 home 1

score 12:00:00 home 1

score 13:00:00 home 1

score 14:00:00 home 1

score 15:00:00 home 1

score 16:00:00 home 1

score 17:00:00 home 1

score 18:00:00 home 1

score 19:00:00 home 1

score 20:00:00 home 1

end 21:00:00

sample output

case 1: 9672

case 2: 478800

#include #include int k[10]=;

int ff(int n)

return sum;

}int tt(int d,int e,int f,int a,int b,int c)

if(b>e)

return 3600*(d-a)+60*(e-b)+f-c;

}int main()

else

}else

else}}

}sum1+=ff(f1)*(tt(h,m,s,h1,m1,s1));

sum2+=ff(f2)*(tt(h,m,s,h2,m2,s2));

printf("case %d: %lld\n",t++,sum1+sum2);}}

return 0;

}

CSU 1507 超大型LED顯示屏

time limit 1 sec memory limit 128 mb submitted 625 solved 331 輸入包含不超過100組資料。每組資料第一行為 start hh mm ss 表示比賽開始時刻為hh mm ss。最後一行為 end hh mm ss 即比賽結束時刻。二者之間至...

CSU 1507 超大型LED顯示屏(數學)

輸入包含不超過100組資料。每組資料第一行為 start hh mm ss 表示比賽開始時刻為hh mm ss。最後一行為 end hh mm ss 即比賽結束時刻。二者之間至少會有乙個score資訊,格式為 score hh mm ss team score 其中team要麼是 home 主場 要...

CSU1507 超大型LED顯示屏 模擬題

csu1507 超大型led顯示屏 模擬題 輸入包含不超過100組資料。每組資料第一行為 start hh mm ss 表示比賽開始時刻為hh mm ss。最後一行為 end hh mm ss 即比賽結束時刻。二者之間至少會有乙個score資訊,格式為 score hh mm ss team sco...