結果

問題 No.1557 Binary Variable
ユーザー RustyRusty
提出日時 2023-01-04 13:01:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,258 ms / 2,000 ms
コード長 507 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 41,200 KB
最終ジャッジ日時 2024-11-27 15:28:43
合計ジャッジ時間 38,556 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 740 ms
40,448 KB
testcase_01 AC 714 ms
37,248 KB
testcase_02 AC 26 ms
10,496 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 901 ms
39,032 KB
testcase_05 AC 929 ms
38,896 KB
testcase_06 AC 871 ms
37,912 KB
testcase_07 AC 891 ms
38,468 KB
testcase_08 AC 1,039 ms
40,632 KB
testcase_09 AC 1,075 ms
40,652 KB
testcase_10 AC 1,095 ms
41,100 KB
testcase_11 AC 1,128 ms
40,984 KB
testcase_12 AC 985 ms
40,324 KB
testcase_13 AC 1,053 ms
40,984 KB
testcase_14 AC 1,068 ms
41,064 KB
testcase_15 AC 1,048 ms
40,912 KB
testcase_16 AC 1,166 ms
41,060 KB
testcase_17 AC 1,188 ms
41,184 KB
testcase_18 AC 1,258 ms
41,052 KB
testcase_19 AC 1,137 ms
41,068 KB
testcase_20 AC 1,135 ms
41,200 KB
testcase_21 AC 1,146 ms
41,068 KB
testcase_22 AC 1,207 ms
41,040 KB
testcase_23 AC 1,134 ms
41,196 KB
testcase_24 AC 1,149 ms
41,192 KB
testcase_25 AC 1,210 ms
41,068 KB
testcase_26 AC 1,177 ms
41,080 KB
testcase_27 AC 1,126 ms
41,196 KB
testcase_28 AC 1,157 ms
41,192 KB
testcase_29 AC 1,135 ms
41,068 KB
testcase_30 AC 1,190 ms
41,200 KB
testcase_31 AC 1,183 ms
41,072 KB
testcase_32 AC 1,134 ms
41,068 KB
testcase_33 AC 1,191 ms
40,940 KB
testcase_34 AC 28 ms
10,624 KB
testcase_35 AC 28 ms
10,624 KB
testcase_36 AC 27 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
L = []
for i in range(m):
    l,r = map(int,input().split())
    L.append([r,l])
L.sort()
ans = n
r = 0
if m != 1:
    while L[r+1][1] <= L[0][0]:
        r += 1
        if r == m-1:
            break
    ans -= 1

    for i in range(1,m):
        if i <= r:
            continue
        if r != m-1:
            while L[r+1][1] <= L[i][0]:
                r += 1
                if r == m-1:
                    break
            ans -= 1

else:
    ans = n-1
    
print(ans)
0