結果

問題 No.1995 CHIKA Road
ユーザー tamatotamato
提出日時 2022-07-01 21:32:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 425 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 82,180 KB
最終ジャッジ日時 2024-11-26 04:01:24
合計ジャッジ時間 5,665 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 39 ms
51,608 KB
testcase_02 AC 37 ms
51,992 KB
testcase_03 AC 34 ms
51,720 KB
testcase_04 AC 36 ms
52,228 KB
testcase_05 AC 36 ms
52,076 KB
testcase_06 AC 54 ms
65,756 KB
testcase_07 AC 87 ms
77,572 KB
testcase_08 AC 36 ms
52,756 KB
testcase_09 AC 38 ms
51,832 KB
testcase_10 AC 143 ms
82,180 KB
testcase_11 AC 169 ms
81,368 KB
testcase_12 AC 91 ms
81,088 KB
testcase_13 AC 91 ms
77,060 KB
testcase_14 AC 95 ms
77,468 KB
testcase_15 AC 156 ms
81,428 KB
testcase_16 AC 64 ms
68,088 KB
testcase_17 AC 123 ms
79,232 KB
testcase_18 AC 165 ms
81,264 KB
testcase_19 AC 169 ms
81,148 KB
testcase_20 AC 117 ms
78,684 KB
testcase_21 AC 112 ms
78,636 KB
testcase_22 AC 167 ms
80,948 KB
testcase_23 AC 83 ms
77,240 KB
testcase_24 AC 144 ms
80,976 KB
testcase_25 AC 68 ms
70,560 KB
testcase_26 AC 89 ms
77,236 KB
testcase_27 AC 141 ms
81,176 KB
testcase_28 AC 105 ms
78,372 KB
testcase_29 AC 161 ms
80,920 KB
testcase_30 AC 64 ms
70,008 KB
testcase_31 AC 54 ms
64,580 KB
testcase_32 AC 71 ms
72,624 KB
testcase_33 AC 145 ms
81,760 KB
testcase_34 AC 54 ms
65,236 KB
testcase_35 AC 90 ms
77,180 KB
testcase_36 AC 97 ms
77,100 KB
testcase_37 AC 170 ms
80,944 KB
testcase_38 AC 126 ms
78,888 KB
testcase_39 AC 56 ms
64,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    input = sys.stdin.readline

    N, M = map(int, input().split())
    AB = []
    for _ in range(M):
        a, b = map(int, input().split())
        AB.append((a, b))
    AB.sort(key=lambda x: x[1])
    ans = 2 * (N - 1)
    r = 0
    for a, b in AB:
        if a < r:
            continue
        ans -= 1
        r = b
    print(ans)


if __name__ == '__main__':
    main()
0