結果

問題 No.1557 Binary Variable
ユーザー vwxyzvwxyz
提出日時 2024-06-01 20:46:29
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,101 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 38,132 KB
最終ジャッジ日時 2024-12-22 10:20:29
合計ジャッジ時間 36,081 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
query=[]
for m in range(M):
    L,R=map(int,input().split())
    query.append((R,L))
query.sort()
queue=[]
for R,L in query:
    if not queue or queue[-1]<L:
        queue.append(R)
ans=N-len(queue)
print(ans)
0