結果

問題 No.1557 Binary Variable
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2021-06-26 18:53:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,278 ms / 2,000 ms
コード長 234 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 41,272 KB
最終ジャッジ日時 2024-06-25 09:17:04
合計ジャッジ時間 40,840 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 785 ms
40,320 KB
testcase_01 AC 762 ms
37,376 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 977 ms
39,104 KB
testcase_05 AC 977 ms
39,104 KB
testcase_06 AC 952 ms
37,984 KB
testcase_07 AC 957 ms
38,552 KB
testcase_08 AC 1,045 ms
40,712 KB
testcase_09 AC 1,117 ms
40,852 KB
testcase_10 AC 1,197 ms
41,180 KB
testcase_11 AC 1,210 ms
41,060 KB
testcase_12 AC 1,093 ms
40,524 KB
testcase_13 AC 1,237 ms
41,188 KB
testcase_14 AC 1,278 ms
41,268 KB
testcase_15 AC 1,223 ms
41,208 KB
testcase_16 AC 1,248 ms
41,140 KB
testcase_17 AC 1,254 ms
41,132 KB
testcase_18 AC 1,248 ms
41,220 KB
testcase_19 AC 1,246 ms
41,272 KB
testcase_20 AC 1,225 ms
41,144 KB
testcase_21 AC 1,217 ms
41,268 KB
testcase_22 AC 1,265 ms
41,140 KB
testcase_23 AC 1,229 ms
41,148 KB
testcase_24 AC 1,261 ms
41,144 KB
testcase_25 AC 1,275 ms
41,148 KB
testcase_26 AC 1,248 ms
41,272 KB
testcase_27 AC 1,229 ms
41,140 KB
testcase_28 AC 1,257 ms
41,272 KB
testcase_29 AC 1,273 ms
41,268 KB
testcase_30 AC 1,250 ms
41,272 KB
testcase_31 AC 1,251 ms
41,140 KB
testcase_32 AC 1,264 ms
41,272 KB
testcase_33 AC 1,273 ms
41,272 KB
testcase_34 AC 29 ms
10,624 KB
testcase_35 AC 30 ms
10,624 KB
testcase_36 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
R = [[]]*M
for i in range(M):
  l,r = map(int,input().split())
  R[i] = [r+1,l]
  
R.sort()
ans=0
con_l=0
for i in range(M):
    if con_l <= R[i][1]:
        ans += 1
        con_l = R[i][0]
print(N-ans)
0