結果

問題 No.1995 CHIKA Road
ユーザー ShirotsumeShirotsume
提出日時 2022-07-01 22:15:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 360 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 88,448 KB
最終ジャッジ日時 2024-05-04 16:36:43
合計ジャッジ時間 5,243 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,096 KB
testcase_01 AC 32 ms
51,584 KB
testcase_02 AC 34 ms
52,352 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 31 ms
51,712 KB
testcase_05 AC 33 ms
52,736 KB
testcase_06 AC 58 ms
72,704 KB
testcase_07 AC 85 ms
77,824 KB
testcase_08 AC 35 ms
52,480 KB
testcase_09 AC 35 ms
52,608 KB
testcase_10 AC 153 ms
86,528 KB
testcase_11 AC 179 ms
86,640 KB
testcase_12 AC 96 ms
85,504 KB
testcase_13 AC 88 ms
79,488 KB
testcase_14 AC 90 ms
79,360 KB
testcase_15 AC 177 ms
88,448 KB
testcase_16 AC 68 ms
77,316 KB
testcase_17 AC 122 ms
81,664 KB
testcase_18 AC 173 ms
86,656 KB
testcase_19 AC 184 ms
86,644 KB
testcase_20 AC 115 ms
82,048 KB
testcase_21 AC 109 ms
79,768 KB
testcase_22 AC 171 ms
86,648 KB
testcase_23 AC 80 ms
77,552 KB
testcase_24 AC 152 ms
84,224 KB
testcase_25 AC 66 ms
77,484 KB
testcase_26 AC 87 ms
79,520 KB
testcase_27 AC 148 ms
84,224 KB
testcase_28 AC 104 ms
80,256 KB
testcase_29 AC 175 ms
86,784 KB
testcase_30 AC 66 ms
77,448 KB
testcase_31 AC 53 ms
71,808 KB
testcase_32 AC 71 ms
77,380 KB
testcase_33 AC 150 ms
84,096 KB
testcase_34 AC 53 ms
72,576 KB
testcase_35 AC 86 ms
79,360 KB
testcase_36 AC 93 ms
79,684 KB
testcase_37 AC 180 ms
88,320 KB
testcase_38 AC 127 ms
81,664 KB
testcase_39 AC 51 ms
70,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
INF = 2 ** 63 - 1
mod = 998244353
n, m = mi()
ab = [li() for _ in range(m)]

ab.sort(key = lambda x: x[1])

now = 1
cnt = 0
for a, b in ab:
    if now <= a:
        now = b
        cnt += 1
print(2 * (n - 1) - cnt)
0