Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
150274 成书骏 校门外的树 C++ Accepted 1 MS 316 KB 552 2026-03-25 18:34:02

Tests(10/10):


Code:

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int l,m,a[10001]={0},c,b,zs=0; cin>>l>>m; for(int i=1;i<=m;i++){ cin>>c>>b; for(int j=c;j<=b;j++){ a[j]=1; } } for(int i=0;i<=l;i++){ if(a[i]==0){ zs++; } } cout<<zs<<endl; return 0; }