Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
96367 | Kevin | 只出现一次的字符 | C++ | Time Limit Exceeded | 1000 MS | 360 KB | 316 | 2024-11-07 15:20:33 |
#include <bits/stdc++.h> using namespace std; char a[100000]; int main() { cin>>a; int len=strlen(a); for(int i=0;i<len;i++){ int k=0; for(int j=0;j<len;j++){ if(a[i]==a[j]) k++; } if(k==1) { cout<<a[i]; return 0; } } cout<<"no"; return 0; }