結果

問題 No.1557 Binary Variable
ユーザー RustyRusty
提出日時 2023-01-04 13:01:19
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,258 ms / 2,000 ms
コード長 507 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 41,200 KB
最終ジャッジ日時 2024-11-27 15:28:43
合計ジャッジ時間 38,556 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
L = []
for i in range(m):
    l,r = map(int,input().split())
    L.append([r,l])
L.sort()
ans = n
r = 0
if m != 1:
    while L[r+1][1] <= L[0][0]:
        r += 1
        if r == m-1:
            break
    ans -= 1

    for i in range(1,m):
        if i <= r:
            continue
        if r != m-1:
            while L[r+1][1] <= L[i][0]:
                r += 1
                if r == m-1:
                    break
            ans -= 1

else:
    ans = n-1
    
print(ans)
0