結果

問題 No.1557 Binary Variable
ユーザー kokonotsukokonotsu
提出日時 2021-07-19 16:35:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 285 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 43,636 KB
最終ジャッジ日時 2024-07-17 13:28:47
合計ジャッジ時間 34,970 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 766 ms
39,040 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 975 ms
43,568 KB
testcase_15 WA -
testcase_16 AC 972 ms
43,500 KB
testcase_17 AC 943 ms
43,500 KB
testcase_18 AC 952 ms
43,492 KB
testcase_19 AC 963 ms
43,572 KB
testcase_20 AC 967 ms
43,504 KB
testcase_21 AC 971 ms
43,508 KB
testcase_22 AC 982 ms
43,572 KB
testcase_23 AC 972 ms
43,636 KB
testcase_24 AC 957 ms
43,508 KB
testcase_25 AC 962 ms
43,564 KB
testcase_26 AC 969 ms
43,568 KB
testcase_27 AC 981 ms
43,508 KB
testcase_28 AC 973 ms
43,508 KB
testcase_29 AC 956 ms
43,636 KB
testcase_30 AC 964 ms
43,636 KB
testcase_31 AC 965 ms
43,636 KB
testcase_32 AC 974 ms
43,488 KB
testcase_33 AC 989 ms
43,508 KB
testcase_34 AC 30 ms
10,752 KB
testcase_35 AC 30 ms
10,752 KB
testcase_36 AC 30 ms
10,752 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]+1
for i in range(1, M):
    if pre < data[i][0]:
        cnt += 1
        pre = data[i][1]+1

print(N-cnt)
0