Pagini recente » Cod sursa (job #3275996) | Diferente pentru problema/12perm intre reviziile 44 si 9 | Cod sursa (job #257766) | Cod sursa (job #1682598) | Cod sursa (job #1794946)
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
char s[1024*1024*10],t,*p,sep[]=" `~1!2@3#4$5%6^7&8*9(0)-_=+[{]}'|,<.>/?";
int i;
long long nr,l;
int main()
{
freopen("text.in","r",stdin);
freopen("text.out","w",stdout);
fgets(s, 1024*1024*10, stdin);
p=strtok(s,sep);
while(p!=NULL){
//printf("%s\n", p);
l+=strlen(p);
nr++;
p=strtok(NULL,sep);
}
//printf("%d %d\n", l, nr);
printf("%lld",l*1LL/nr);
return 0;
}