結果

問題 No.1557 Binary Variable
ユーザー playerplayer
提出日時 2023-12-20 16:50:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 669 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 100,872 KB
最終ジャッジ日時 2024-09-27 09:53:43
合計ジャッジ時間 22,384 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 213 ms
98,984 KB
testcase_01 AC 241 ms
100,356 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 443 ms
100,216 KB
testcase_05 AC 425 ms
99,988 KB
testcase_06 AC 394 ms
100,096 KB
testcase_07 AC 415 ms
100,028 KB
testcase_08 AC 541 ms
100,196 KB
testcase_09 AC 566 ms
99,676 KB
testcase_10 AC 629 ms
99,828 KB
testcase_11 AC 655 ms
99,960 KB
testcase_12 AC 545 ms
99,952 KB
testcase_13 AC 651 ms
99,948 KB
testcase_14 AC 633 ms
100,332 KB
testcase_15 AC 629 ms
99,688 KB
testcase_16 AC 648 ms
99,944 KB
testcase_17 AC 650 ms
99,460 KB
testcase_18 AC 659 ms
99,604 KB
testcase_19 AC 669 ms
99,484 KB
testcase_20 AC 654 ms
99,588 KB
testcase_21 AC 636 ms
99,932 KB
testcase_22 AC 633 ms
99,636 KB
testcase_23 AC 639 ms
99,656 KB
testcase_24 AC 621 ms
99,492 KB
testcase_25 AC 650 ms
99,832 KB
testcase_26 AC 662 ms
99,704 KB
testcase_27 AC 657 ms
99,300 KB
testcase_28 AC 663 ms
99,432 KB
testcase_29 AC 640 ms
100,872 KB
testcase_30 AC 634 ms
100,536 KB
testcase_31 AC 637 ms
100,736 KB
testcase_32 AC 660 ms
100,652 KB
testcase_33 AC 666 ms
99,820 KB
testcase_34 AC 36 ms
51,968 KB
testcase_35 AC 36 ms
52,224 KB
testcase_36 AC 36 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 全てのli,riの区間において0が含まれている
# 区間スケジューリング

n,m = map(int,input().split())

lis = []
for i in range(m):
    l,r = map(int,input().split())
    lis.append([r,l])
    
lis.sort()
cnt = 0
for i in range(m):
    r,l = lis[i]
    if i == 0:
        cnt += 1
        lastr = r
    else:
        if l > lastr:
            cnt += 1
            lastr = r
        
print(n-cnt)
0