Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
99505 李大川LDC 单词排序 C++ 通过 100 0 MS 260 KB 520 2023-08-22 22:11:25

Tests(5/5):


#include <iostream> #include <string> #include <algorithm> using namespace std; bool cmp(string x,string y) { return x<y; } string a[105]; int main() { string s; getline(cin,s); int b=0; int x=0; for(int i=0;i<s.size();i++) { if(s[i]==','||s[i]==' '||s[i]=='.'||s[i]=='!') { if(s[x]!=','&&s[x]!=' '&&s[x]!='.'&&s[x]!='!') { a[b++]=s.substr(x,i-x); } x=i+1; } } sort(a,a+b,cmp); cout<<b<<"\n"; for(int i=0;i<b;i++) { cout<<a[i]<<"\n"; } return 0; }


测评信息:

输入

                    

输出

                    

答案

                    

系统信息

exit code: 0, checker exit code: 0

输入

                    

输出

                    

答案

                    

系统信息

exit code: 0, checker exit code: 0

输入

                    

输出

                    

答案

                    

系统信息

exit code: 0, checker exit code: 0

输入

                    

输出

                    

答案

                    

系统信息

exit code: 0, checker exit code: 0

输入

                    

输出

                    

答案

                    

系统信息

exit code: 0, checker exit code: 0