Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
39082 | Songgy_King | 导弹拦截 | C++ | 解答错误 | 72 MS | 244 KB | 398 | 2024-01-30 17:38:26 |
#include<bits/stdc++.h> using namespace std; int main() { int num[1001],cnt=1,t; num[cnt]=30000; while(cin>>t){ bool flag=false; for(int i=1;i<=cnt;i++){ if(num[i]>=t){ num[i]=t; flag=true; break; } } if(!flag){ cnt++; num[cnt]=t; } if(getchar()=='/0'){ break; } } cout<<cnt; return 0; }