#include <stdio.h>
int main()
{
int times = 0;
while(scanf("%d",×) != EOF){
double sum = 0, ave = 0;
for(int i = 0; i < times; i++){
int score = 0;
scanf("%d",&score);
sum += score;
}
sum /= times;
if(sum > 59) printf("no\n");
else printf("yes\n");
}
return 0;
}
這題很神奇,我程式改成那樣,改成這樣,最後想說改成最初的,又突然可以了。