Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
124631 I am BM 单词查找树 C++ 通过 100 2 MS 616 KB 343 2024-01-23 15:16:43

Tests(10/10):


#include <bits/stdc++.h> using namespace std; string p[10000]; int main() { int times=0,len1,len2; while (cin>>p[++times]); sort(p+1,p+1+times); int ans=p[1].length(); for (int i=2;i<=times;i++) { int j=0; while (p[i][j]==p[i-1][j]&&j<p[i-1].length()) j++; ans+=p[i].length()-j; } cout<<ans+1<<endl; return 0; }


测评信息: