結果

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

ソースコード

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[1],x[0]))
ans = n
R = 0
for i in range(m):
    l,r = lr[i]
    if l > R:
        ans -= 1
        R = r
print(ans)
0