結果

問題 No.1557 Binary Variable
ユーザー tassei903tassei903
提出日時 2021-06-25 21:31:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 661 ms / 2,000 ms
コード長 548 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 93,940 KB
最終ジャッジ日時 2024-06-25 08:13:27
合計ジャッジ時間 20,997 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 176 ms
92,784 KB
testcase_01 AC 191 ms
92,200 KB
testcase_02 AC 38 ms
52,244 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 419 ms
92,648 KB
testcase_05 AC 403 ms
92,828 KB
testcase_06 AC 373 ms
92,592 KB
testcase_07 AC 393 ms
92,664 KB
testcase_08 AC 531 ms
92,800 KB
testcase_09 AC 574 ms
92,984 KB
testcase_10 AC 655 ms
92,800 KB
testcase_11 AC 636 ms
92,832 KB
testcase_12 AC 526 ms
93,440 KB
testcase_13 AC 640 ms
92,904 KB
testcase_14 AC 648 ms
93,520 KB
testcase_15 AC 647 ms
92,920 KB
testcase_16 AC 643 ms
93,508 KB
testcase_17 AC 654 ms
93,292 KB
testcase_18 AC 650 ms
93,240 KB
testcase_19 AC 650 ms
93,436 KB
testcase_20 AC 649 ms
93,348 KB
testcase_21 AC 645 ms
93,312 KB
testcase_22 AC 643 ms
93,056 KB
testcase_23 AC 657 ms
93,312 KB
testcase_24 AC 660 ms
92,928 KB
testcase_25 AC 656 ms
93,424 KB
testcase_26 AC 651 ms
92,800 KB
testcase_27 AC 661 ms
92,916 KB
testcase_28 AC 642 ms
92,336 KB
testcase_29 AC 653 ms
93,744 KB
testcase_30 AC 661 ms
92,840 KB
testcase_31 AC 644 ms
93,940 KB
testcase_32 AC 650 ms
92,460 KB
testcase_33 AC 643 ms
93,204 KB
testcase_34 AC 38 ms
52,224 KB
testcase_35 AC 38 ms
52,352 KB
testcase_36 AC 37 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
sys.setrecursionlimit(10**7)
yes = lambda :print("yes");Yes = lambda :print("Yes")
no = lambda :print("no");No = lambda :print("No")
#######################################################################

n,m = na()

lr = []
for i in range(m):
    l,r = na()
    lr.append((r-1,l-1))

z = -1
lr = sorted(lr)
ans = 0
for i in range(m):
    #print(z,l,r)
    r,l = lr[i]
    if z<l:
        ans+=1
        z = r

print(n-ans)
0