結果

問題 No.1557 Binary Variable
ユーザー pluto77pluto77
提出日時 2021-06-26 09:09:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 473 ms / 2,000 ms
コード長 194 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 109,396 KB
最終ジャッジ日時 2024-06-25 09:06:51
合計ジャッジ時間 15,365 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 226 ms
97,584 KB
testcase_01 AC 245 ms
103,792 KB
testcase_02 AC 37 ms
52,280 KB
testcase_03 AC 37 ms
52,000 KB
testcase_04 AC 325 ms
99,008 KB
testcase_05 AC 322 ms
99,144 KB
testcase_06 AC 315 ms
99,212 KB
testcase_07 AC 319 ms
99,212 KB
testcase_08 AC 370 ms
99,208 KB
testcase_09 AC 383 ms
98,944 KB
testcase_10 AC 412 ms
98,976 KB
testcase_11 AC 415 ms
98,928 KB
testcase_12 AC 364 ms
99,276 KB
testcase_13 AC 408 ms
98,712 KB
testcase_14 AC 428 ms
98,676 KB
testcase_15 AC 415 ms
99,048 KB
testcase_16 AC 424 ms
98,708 KB
testcase_17 AC 423 ms
98,676 KB
testcase_18 AC 418 ms
98,788 KB
testcase_19 AC 461 ms
108,736 KB
testcase_20 AC 455 ms
109,396 KB
testcase_21 AC 462 ms
108,908 KB
testcase_22 AC 473 ms
108,776 KB
testcase_23 AC 462 ms
109,120 KB
testcase_24 AC 460 ms
105,392 KB
testcase_25 AC 468 ms
106,484 KB
testcase_26 AC 460 ms
104,116 KB
testcase_27 AC 461 ms
103,176 KB
testcase_28 AC 447 ms
101,360 KB
testcase_29 AC 449 ms
99,888 KB
testcase_30 AC 455 ms
100,828 KB
testcase_31 AC 439 ms
100,032 KB
testcase_32 AC 452 ms
100,488 KB
testcase_33 AC 427 ms
99,624 KB
testcase_34 AC 36 ms
51,956 KB
testcase_35 AC 36 ms
52,800 KB
testcase_36 AC 37 ms
52,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1557
n,m=map(int,input().split())
lr=[list(map(int,input().split())) for i in range(m)]
res=n
t=-1
for l,r in sorted(lr,key=lambda x: x[1]):
 if l<=t<=r:
  continue
 res-=1
 t=r
print(res)
0