Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
26410 老方 导弹拦截 C++ 通过 0 MS 248 KB 237 2023-09-06 19:16:56

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int main(){ int ns[1000]={},i=0,x=0; while(cin>>ns[i]){ i++; if(cin.get()=='\n'){ break; } } for(int j=0;j<i;j++){ if(ns[j]>ns[j-1])x++; } cout<<x; return 0; }


测评信息: