| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 133214 | 鲁博睿 | 校门外的树 | C++ | Accepted | 2 MS | 348 KB | 340 | 2025-10-17 20:25:34 |
#include <bits/stdc++.h> using namespace std; int g[100000]; int main(){ int l,m; cin>>l>>m; int t=0; for(int i=1;i<= m;i++){ int n,e; cin >> n >> e; for(int j=n;j<=e;j++) if(g[j]==0){ t++; g[j]=1; } } cout<<l+1-t; return 0; }