結果

問題 No.1557 Binary Variable
ユーザー kokonotsukokonotsu
提出日時 2021-07-19 16:42:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,007 ms / 2,000 ms
コード長 280 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 43,576 KB
最終ジャッジ日時 2024-07-17 13:31:54
合計ジャッジ時間 33,761 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 774 ms
41,984 KB
testcase_01 AC 776 ms
38,784 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 864 ms
41,120 KB
testcase_05 AC 858 ms
41,212 KB
testcase_06 AC 844 ms
40,096 KB
testcase_07 AC 855 ms
40,784 KB
testcase_08 AC 901 ms
42,828 KB
testcase_09 AC 920 ms
42,844 KB
testcase_10 AC 942 ms
43,168 KB
testcase_11 AC 962 ms
43,300 KB
testcase_12 AC 900 ms
42,644 KB
testcase_13 AC 960 ms
43,176 KB
testcase_14 AC 972 ms
43,576 KB
testcase_15 AC 958 ms
43,196 KB
testcase_16 AC 989 ms
43,384 KB
testcase_17 AC 975 ms
43,216 KB
testcase_18 AC 974 ms
43,372 KB
testcase_19 AC 979 ms
43,320 KB
testcase_20 AC 1,001 ms
43,512 KB
testcase_21 AC 983 ms
43,516 KB
testcase_22 AC 971 ms
43,328 KB
testcase_23 AC 987 ms
43,388 KB
testcase_24 AC 992 ms
43,516 KB
testcase_25 AC 991 ms
43,316 KB
testcase_26 AC 974 ms
43,448 KB
testcase_27 AC 975 ms
43,260 KB
testcase_28 AC 991 ms
43,384 KB
testcase_29 AC 990 ms
43,512 KB
testcase_30 AC 993 ms
43,392 KB
testcase_31 AC 1,007 ms
43,392 KB
testcase_32 AC 991 ms
43,400 KB
testcase_33 AC 995 ms
43,260 KB
testcase_34 AC 30 ms
10,624 KB
testcase_35 AC 30 ms
10,752 KB
testcase_36 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
data = []
for i in range(M):
    l,r = map(int, input().split())
    data.append([l, r])

data.sort(key=lambda x:x[1])

cnt = 1
pre = data[0][1]
for i in range(1, M):
    if pre < data[i][0]:
        cnt += 1
        pre = data[i][1]

print(N-cnt)
0