QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#770937 | #7953. Product Delivery | vwxyz | Compile Error | / | / | C++23 | 256b | 2024-11-22 03:43:11 | 2024-11-22 03:43:11 |
Judging History
answer
N=int(input())
L,R=[],[]
for i in range(N):
l,r=map(int,input().split())
L.append(l)
R.append(r)
ans=0
cur=-1
for l,r in zip(L[::-1],R[::-1]):
if l<=cur:
cur=min(cur,r)
else:
ans+=1
cur=r
print(ans)
详细
answer.code:1:1: error: ‘N’ does not name a type 1 | N=int(input()) | ^