結果

問題 No.1557 Binary Variable
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-06-25 21:30:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 526 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 107,528 KB
最終ジャッジ日時 2024-06-25 08:11:48
合計ジャッジ時間 16,763 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 248 ms
97,792 KB
testcase_01 AC 268 ms
102,552 KB
testcase_02 AC 40 ms
52,060 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 352 ms
97,576 KB
testcase_05 AC 352 ms
97,792 KB
testcase_06 AC 332 ms
97,596 KB
testcase_07 AC 340 ms
97,536 KB
testcase_08 AC 403 ms
97,788 KB
testcase_09 AC 418 ms
97,444 KB
testcase_10 AC 450 ms
97,664 KB
testcase_11 AC 451 ms
97,024 KB
testcase_12 AC 396 ms
97,408 KB
testcase_13 AC 447 ms
97,276 KB
testcase_14 AC 464 ms
97,004 KB
testcase_15 AC 456 ms
97,664 KB
testcase_16 AC 471 ms
97,280 KB
testcase_17 AC 459 ms
97,560 KB
testcase_18 AC 462 ms
97,152 KB
testcase_19 AC 526 ms
106,880 KB
testcase_20 AC 515 ms
107,528 KB
testcase_21 AC 500 ms
107,512 KB
testcase_22 AC 525 ms
107,376 KB
testcase_23 AC 505 ms
107,392 KB
testcase_24 AC 514 ms
104,044 KB
testcase_25 AC 514 ms
105,156 KB
testcase_26 AC 505 ms
102,272 KB
testcase_27 AC 507 ms
101,544 KB
testcase_28 AC 502 ms
100,124 KB
testcase_29 AC 505 ms
98,540 KB
testcase_30 AC 506 ms
99,324 KB
testcase_31 AC 500 ms
98,560 KB
testcase_32 AC 496 ms
99,072 KB
testcase_33 AC 482 ms
97,792 KB
testcase_34 AC 40 ms
51,968 KB
testcase_35 AC 39 ms
51,968 KB
testcase_36 AC 38 ms
52,352 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])
s = set()
done = -1
for l,r in LR:
    if done >= l:
        continue
    s.add(r)
    done = r
print(n-len(s))
0