Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
123189 金昱帆 19选班长 C++ Wrong Answer 1 MS 268 KB 345 2025-06-28 12:53:43

Tests(0/10):


Code:

#include<iostream> using namespace std; int l,m; int g[100000]={0}; int main(){ cin>>l>>m; int cnt=0; for(int i=1;i<= m;i++){ int n,end; cin >> n >> end; for(int j=n;j<=end;j++) if(g[j]==0){ cnt++; g[j]=1; } } cout<<l+1-cnt; return 0; }


Run Info:

------Input------
7 2 6 4 5 3 3 3 3 5 1 1 5 2 4 7 1 3 5 2 5 1
------Answer-----
3
------Your output-----
8