提交时间:2024-01-23 15:06:24

运行 ID: 124588

#include<bits/stdc++.h> using namespace std; int a,b=0,c,d,e,f,g,h,i,j,k,l,m,n,o; string x[20045]; int main() { while(cin>>x[++a]); a--; sort(x+1,x+a+1); b=x[1].length(); for(c=2;c<=a;c++) { d=0; while(x[c][d]==x[c-1][d]&&d<x[c-1].length()) d++; b+=x[c].length()-d; } cout<<b+1<<endl; return 0; }