2 条题解
-
0
#include <iostream> using namespace std; int book[26],pos,firstpos=-1; string s; bool flag=true; int main(){ cin>>s; for(int i=0;i<s.length();i++){ pos=s[i]-'a'; if(book[pos]==0)book[pos]=1; else{ flag=false; if(firstpos=-1)firstpos=pos; } } flag?cout<<s.length()<<endl:cout<<book[firstpos]+'a'<<endl; return 0; }
- 1
信息
- ID
- 975
- 时间
- 1000ms
- 内存
- 64MiB
- 难度
- 2
- 标签
- 递交数
- 31
- 已通过
- 23
- 上传者