結果
問題 | No.3039 配信者 |
ユーザー |
![]() |
提出日時 | 2025-02-28 21:37:36 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 726 ms / 2,000 ms |
コード長 | 190 bytes |
コンパイル時間 | 281 ms |
コンパイル使用メモリ | 82,376 KB |
実行使用メモリ | 84,672 KB |
最終ジャッジ日時 | 2025-02-28 21:37:49 |
合計ジャッジ時間 | 8,495 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 15 |
ソースコード
N,H=map(int, input().split())C=[0]*(10**6+10)for i in range(N):a,b=map(int, input().split())C[a]+=1C[b+1]-=1ans=0now=0for c in C:now+=cans=max(ans,now)print(ans)