Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
98291 | hby | 只出现一次的字符 | C++ | Time Limit Exceeded | 1000 MS | 348 KB | 320 | 2024-11-17 19:25:35 |
#include<bits/stdc++.h> #include<cstdio> using namespace std; char a[100005]; int main() { int n; gets(a); int len=strlen(a); for(int i=0;i<len;i++){ n=0; for(int j=0;j<len;j++){ if(a[i]==a[j]){ n++; } } if(n==1){ cout<<a[i]; return 0; } } cout<<"no"; return 0; }