結果

問題 No.1557 Binary Variable
ユーザー mkawa2mkawa2
提出日時 2021-06-25 21:29:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 679 ms / 2,000 ms
コード長 839 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 53,060 KB
最終ジャッジ日時 2024-06-25 08:10:28
合計ジャッジ時間 22,656 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 472 ms
51,456 KB
testcase_01 AC 470 ms
48,512 KB
testcase_02 AC 33 ms
10,624 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 587 ms
50,708 KB
testcase_05 AC 579 ms
50,820 KB
testcase_06 AC 567 ms
49,704 KB
testcase_07 AC 577 ms
50,140 KB
testcase_08 AC 612 ms
52,308 KB
testcase_09 AC 625 ms
52,448 KB
testcase_10 AC 644 ms
52,780 KB
testcase_11 AC 639 ms
52,904 KB
testcase_12 AC 615 ms
52,244 KB
testcase_13 AC 649 ms
52,660 KB
testcase_14 AC 658 ms
52,932 KB
testcase_15 AC 647 ms
52,912 KB
testcase_16 AC 648 ms
52,952 KB
testcase_17 AC 638 ms
52,984 KB
testcase_18 AC 646 ms
52,976 KB
testcase_19 AC 648 ms
52,928 KB
testcase_20 AC 654 ms
52,868 KB
testcase_21 AC 643 ms
52,992 KB
testcase_22 AC 650 ms
53,060 KB
testcase_23 AC 646 ms
52,992 KB
testcase_24 AC 645 ms
52,868 KB
testcase_25 AC 644 ms
53,056 KB
testcase_26 AC 657 ms
52,880 KB
testcase_27 AC 649 ms
52,868 KB
testcase_28 AC 662 ms
52,864 KB
testcase_29 AC 646 ms
52,904 KB
testcase_30 AC 657 ms
52,872 KB
testcase_31 AC 679 ms
52,996 KB
testcase_32 AC 662 ms
52,996 KB
testcase_33 AC 656 ms
52,868 KB
testcase_34 AC 32 ms
10,624 KB
testcase_35 AC 31 ms
10,624 KB
testcase_36 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**16
md = 998244353
# md = 10**9+7

n,m=LI()
lr=LLI(m)
last=-1
cnt=0
lr.sort(key=lambda x:x[1])
for l,r in lr:
    if last<l:
        last=r
        cnt+=1

print(n-cnt)
0