結果

問題 No.1557 Binary Variable
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-06-25 22:24:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,015 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 52,980 KB
最終ジャッジ日時 2024-06-25 08:33:29
合計ジャッジ時間 33,337 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 804 ms
51,456 KB
testcase_01 AC 781 ms
48,384 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 28 ms
10,880 KB
testcase_04 AC 897 ms
51,004 KB
testcase_05 AC 895 ms
50,716 KB
testcase_06 AC 881 ms
49,628 KB
testcase_07 AC 881 ms
50,444 KB
testcase_08 AC 938 ms
52,228 KB
testcase_09 AC 950 ms
52,436 KB
testcase_10 AC 967 ms
52,696 KB
testcase_11 AC 945 ms
52,700 KB
testcase_12 AC 919 ms
52,300 KB
testcase_13 AC 957 ms
52,836 KB
testcase_14 AC 955 ms
52,980 KB
testcase_15 AC 961 ms
52,980 KB
testcase_16 AC 957 ms
52,784 KB
testcase_17 AC 975 ms
52,908 KB
testcase_18 AC 968 ms
52,900 KB
testcase_19 AC 976 ms
52,976 KB
testcase_20 AC 972 ms
52,912 KB
testcase_21 AC 954 ms
52,788 KB
testcase_22 AC 983 ms
52,980 KB
testcase_23 AC 953 ms
52,792 KB
testcase_24 AC 987 ms
52,912 KB
testcase_25 AC 981 ms
52,976 KB
testcase_26 AC 973 ms
52,980 KB
testcase_27 AC 978 ms
52,788 KB
testcase_28 AC 994 ms
52,916 KB
testcase_29 AC 998 ms
52,916 KB
testcase_30 AC 999 ms
52,784 KB
testcase_31 AC 1,015 ms
52,916 KB
testcase_32 AC 976 ms
52,912 KB
testcase_33 AC 971 ms
52,792 KB
testcase_34 AC 29 ms
10,752 KB
testcase_35 AC 28 ms
10,752 KB
testcase_36 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
lr = [list(map(int, input().split())) for i in range(m)]
lr.sort(key=lambda x:x[1])
last = lr[0][1]
cnt = 1
for i in range(1, m):
    l, r = lr[i]
    if last < l:
        cnt += 1
        last = r
print(n - cnt)
0