結果

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

ソースコード

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