結果

問題 No.1557 Binary Variable
ユーザー titiatitia
提出日時 2021-06-25 23:09:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 898 ms / 2,000 ms
コード長 277 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 40,208 KB
最終ジャッジ日時 2024-06-25 08:50:16
合計ジャッジ時間 30,277 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 708 ms
38,912 KB
testcase_01 AC 698 ms
35,712 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 777 ms
38,044 KB
testcase_05 AC 769 ms
37,780 KB
testcase_06 AC 782 ms
36,920 KB
testcase_07 AC 789 ms
37,612 KB
testcase_08 AC 798 ms
39,520 KB
testcase_09 AC 816 ms
39,532 KB
testcase_10 AC 846 ms
39,992 KB
testcase_11 AC 835 ms
39,996 KB
testcase_12 AC 788 ms
39,588 KB
testcase_13 AC 824 ms
39,964 KB
testcase_14 AC 850 ms
40,148 KB
testcase_15 AC 845 ms
39,892 KB
testcase_16 AC 868 ms
40,208 KB
testcase_17 AC 861 ms
40,076 KB
testcase_18 AC 863 ms
40,028 KB
testcase_19 AC 861 ms
40,080 KB
testcase_20 AC 898 ms
40,084 KB
testcase_21 AC 848 ms
39,956 KB
testcase_22 AC 853 ms
40,052 KB
testcase_23 AC 866 ms
40,088 KB
testcase_24 AC 838 ms
40,084 KB
testcase_25 AC 867 ms
40,084 KB
testcase_26 AC 825 ms
40,208 KB
testcase_27 AC 830 ms
40,080 KB
testcase_28 AC 846 ms
40,084 KB
testcase_29 AC 838 ms
40,128 KB
testcase_30 AC 842 ms
40,084 KB
testcase_31 AC 859 ms
40,084 KB
testcase_32 AC 852 ms
40,080 KB
testcase_33 AC 850 ms
40,080 KB
testcase_34 AC 30 ms
10,624 KB
testcase_35 AC 30 ms
10,752 KB
testcase_36 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from operator import itemgetter

N,M=map(int,input().split())
LR=[tuple(map(int,input().split())) for i in range(M)]

LR.sort(key=itemgetter(0))
LR.sort(key=itemgetter(1))

leftmost=-1
ANS=0
for x,y in LR:
    if x>leftmost:
        leftmost=y
        ANS+=1
print(N-ANS)
    
0