| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 127889 | 唐诗阳 | 删除数字字符 | C++ | Time Limit Exceeded | 1000 MS | 276 KB | 455 | 2025-07-29 19:36:54 |
#include<iostream> #include<cstdio> //scanf()\printf() #include<cstring> #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ char s[1000001]; int x=0,a=0; cin>>s; for(int i=0;s[i]!='\0';i++) x++; for(int i=0;i<x;i++){ for(int j=0;j<x;i++){ if(s[a]==j){ break; } } cout<<s[i]; } return 0; }