Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
8452 slx 校门外的树 C++ 解答错误 0 MS 280 KB 317 2023-02-10 13:36:58

Tests(0/1):


#include<iostream> using namespace std; int main(){ int L,M,i,j; int section[10001]= {0}; int a,b,tn=0,te,ts; cin>>L>>M; for (i=0; i<M; i++) { cin>>a>>b; for(j=a; j<=b; j++) section[j]=1; } for(i=0; i<=L; i++) if(section[i]==1) ts++; te=L+1; tn=te-ts; cout<<tn; return 0; }


测评信息: