CSU1507 超大型LED顯示屏 模擬題

2021-08-06 05:10:40 字數 2238 閱讀 7242

**csu1507 超大型led顯示屏_模擬題**

輸入包含不超過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

ac**思路很清晰,寫的有點多

//模擬題,每次讀一行,分別計算時間和耗電量

#include

int isstart(char c) //start

int isend(char c) //end

int countss(char c) //以秒計算時間

else

if(c[0] == 'e')

return h + m + s;

}int horg(char c) //home or guest

int countscore(int initial, char c) //home or guest的得分

//計算當前home或者guest耗電量,home得分guest耗電量不變,guest得分home耗電量不變

int countccc(int homeguest, char c, int le)

}else

if(homeguest >= 10 && homeguest <= 99) //兩位數

}else

if(homeguest >= 100 && homeguest <= 999) //三位數

}return hgc;

}int main()

; //對應的耗電量

char s[30];

int caseout = 0; //編號

int charge = 0; //統計最終耗電量

while(gets(s))

else

if(isend(s)) //end

else

//score

else

//guest得分, home不變}}

return

0;}

CSU 1507 超大型LED顯示屏

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

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 主場 要...