結果

問題 No.1995 CHIKA Road
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-07-01 22:04:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 361 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 87,224 KB
最終ジャッジ日時 2024-11-26 05:12:09
合計ジャッジ時間 8,991 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 40 ms
52,108 KB
testcase_02 AC 41 ms
51,904 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 39 ms
52,992 KB
testcase_06 AC 83 ms
76,928 KB
testcase_07 AC 137 ms
79,232 KB
testcase_08 AC 39 ms
53,168 KB
testcase_09 AC 38 ms
53,120 KB
testcase_10 AC 361 ms
86,800 KB
testcase_11 AC 355 ms
86,228 KB
testcase_12 AC 361 ms
86,224 KB
testcase_13 AC 146 ms
80,256 KB
testcase_14 AC 153 ms
80,076 KB
testcase_15 AC 314 ms
85,968 KB
testcase_16 AC 93 ms
77,196 KB
testcase_17 AC 228 ms
82,732 KB
testcase_18 AC 355 ms
87,224 KB
testcase_19 AC 350 ms
86,876 KB
testcase_20 AC 211 ms
81,716 KB
testcase_21 AC 190 ms
81,268 KB
testcase_22 AC 335 ms
86,496 KB
testcase_23 AC 139 ms
79,692 KB
testcase_24 AC 296 ms
85,340 KB
testcase_25 AC 102 ms
77,872 KB
testcase_26 AC 153 ms
80,296 KB
testcase_27 AC 280 ms
84,064 KB
testcase_28 AC 200 ms
81,224 KB
testcase_29 AC 339 ms
86,856 KB
testcase_30 AC 96 ms
77,512 KB
testcase_31 AC 79 ms
77,240 KB
testcase_32 AC 115 ms
78,208 KB
testcase_33 AC 278 ms
84,392 KB
testcase_34 AC 80 ms
76,768 KB
testcase_35 AC 146 ms
79,996 KB
testcase_36 AC 161 ms
80,692 KB
testcase_37 AC 326 ms
86,540 KB
testcase_38 AC 238 ms
83,072 KB
testcase_39 AC 81 ms
76,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
l = []
for i in range(m):
    a,b = map(int,input().split())
    l.append((a,b))
l.sort(key = lambda x:(x[1],x[0]))
res = 0
right = 0
for a,b in l:
    if a >=right:
        res += 1
        right = b
print(2*(n-1)-res)
0