結果

問題 No.1557 Binary Variable
ユーザー lloyzlloyz
提出日時 2022-01-02 21:14:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,210 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 65,408 KB
最終ジャッジ日時 2024-10-12 01:24:11
合計ジャッジ時間 40,951 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 818 ms
64,000 KB
testcase_01 AC 829 ms
60,800 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 1,002 ms
63,220 KB
testcase_05 AC 992 ms
63,164 KB
testcase_06 AC 983 ms
62,188 KB
testcase_07 AC 1,015 ms
62,748 KB
testcase_08 AC 1,124 ms
64,428 KB
testcase_09 AC 1,134 ms
64,804 KB
testcase_10 AC 1,186 ms
65,124 KB
testcase_11 AC 1,191 ms
65,260 KB
testcase_12 AC 1,105 ms
64,604 KB
testcase_13 AC 1,179 ms
65,272 KB
testcase_14 AC 1,142 ms
65,276 KB
testcase_15 AC 1,171 ms
65,280 KB
testcase_16 AC 1,141 ms
65,216 KB
testcase_17 AC 1,153 ms
65,084 KB
testcase_18 AC 1,168 ms
65,200 KB
testcase_19 AC 1,196 ms
65,404 KB
testcase_20 AC 1,171 ms
65,216 KB
testcase_21 AC 1,177 ms
65,344 KB
testcase_22 AC 1,166 ms
65,408 KB
testcase_23 AC 1,164 ms
65,344 KB
testcase_24 AC 1,162 ms
65,088 KB
testcase_25 AC 1,163 ms
65,276 KB
testcase_26 AC 1,210 ms
65,156 KB
testcase_27 AC 1,167 ms
65,344 KB
testcase_28 AC 1,175 ms
65,348 KB
testcase_29 AC 1,183 ms
65,348 KB
testcase_30 AC 1,178 ms
65,220 KB
testcase_31 AC 1,170 ms
65,344 KB
testcase_32 AC 1,187 ms
65,220 KB
testcase_33 AC 1,181 ms
65,348 KB
testcase_34 AC 29 ms
10,624 KB
testcase_35 AC 29 ms
10,624 KB
testcase_36 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
LR = [list(map(int, input().split())) for _ in range(m)]

LR.sort(key=lambda x: (x[1], x[0]))
I = [LR[0][1]]
for i in range(1, m):
    if LR[i][0] <= I[-1] <= LR[i][1]:
        continue
    I.append(LR[i][1])

print(n - len(I))
0