Cod sursa(job #2600617)

Utilizator AswVwsACamburu Luca AswVwsA Data 12 aprilie 2020 22:03:23
Problema Text Scor 40
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.42 kb
#include <bits/stdc++.h>
#define ull unsigned long long
using namespace std;
ifstream in("text.in");
ofstream out("text.out");
char s[1000002],
sep[100];
int main()
{
    int dim=0;
    for (int i=32;i<=126;++i)
    if (!isalpha(i)){
        sep[dim++]=char(i);
        }
in.getline(s,100006);
ull cnt=0,nr=0;

char *p=strtok(s,sep);
while (p){
cnt++;
nr+=strlen(p);
p=strtok(NULL,sep);
}
out<<nr/cnt;
}