結果

問題 No.1557 Binary Variable
ユーザー SidewaysOwl
提出日時 2021-10-20 17:47:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 244 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 116,736 KB
最終ジャッジ日時 2024-09-20 06:38:48
合計ジャッジ時間 10,260 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 3 WA * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
lr = []
for _ in range(m):
    lr.append(list(map(int,input().split())))
lr.sort(key = lambda x:(x[0],x[1]))
ans = n
R = 0
for i in range(m):
    l,r = lr[i]
    if l > R:
        ans -= 1
        R = r
print(ans)
0