結果

問題 No.1995 CHIKA Road
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-07-01 21:57:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 214 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 91,136 KB
最終ジャッジ日時 2024-05-04 16:22:54
合計ジャッジ時間 7,924 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,584 KB
testcase_01 AC 43 ms
51,968 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 41 ms
51,584 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 43 ms
52,608 KB
testcase_06 AC 92 ms
76,672 KB
testcase_07 AC 128 ms
79,156 KB
testcase_08 AC 47 ms
52,864 KB
testcase_09 AC 46 ms
52,608 KB
testcase_10 AC 246 ms
87,808 KB
testcase_11 AC 266 ms
86,528 KB
testcase_12 AC 164 ms
85,888 KB
testcase_13 AC 130 ms
79,104 KB
testcase_14 AC 141 ms
79,232 KB
testcase_15 AC 240 ms
85,120 KB
testcase_16 AC 102 ms
76,928 KB
testcase_17 AC 204 ms
83,696 KB
testcase_18 AC 274 ms
87,480 KB
testcase_19 AC 276 ms
87,292 KB
testcase_20 AC 180 ms
81,024 KB
testcase_21 AC 172 ms
81,152 KB
testcase_22 AC 278 ms
91,136 KB
testcase_23 AC 136 ms
78,848 KB
testcase_24 AC 253 ms
85,504 KB
testcase_25 AC 110 ms
76,800 KB
testcase_26 AC 140 ms
78,848 KB
testcase_27 AC 224 ms
85,248 KB
testcase_28 AC 164 ms
81,280 KB
testcase_29 AC 275 ms
88,192 KB
testcase_30 AC 105 ms
77,312 KB
testcase_31 AC 95 ms
76,800 KB
testcase_32 AC 109 ms
77,032 KB
testcase_33 AC 236 ms
87,680 KB
testcase_34 AC 89 ms
77,184 KB
testcase_35 AC 128 ms
78,720 KB
testcase_36 AC 138 ms
78,976 KB
testcase_37 AC 260 ms
85,248 KB
testcase_38 AC 199 ms
82,944 KB
testcase_39 AC 84 ms
76,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
AB = [list(map(int,input().split())) for i in range(m)]
ans = 0
AB.sort(key=lambda x: x[1])
now = 0
for a,b in AB:
    if now <= a:
        now = b
        ans += 1
print(2*(n-1)-ans)
0