結果

問題 No.1995 CHIKA Road
ユーザー flippergoflippergo
提出日時 2024-12-27 18:20:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 236 bytes
コンパイル時間 473 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 91,392 KB
最終ジャッジ日時 2024-12-27 18:20:49
合計ジャッジ時間 8,227 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,328 KB
testcase_01 AC 42 ms
51,456 KB
testcase_02 AC 43 ms
51,584 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 42 ms
51,712 KB
testcase_05 AC 41 ms
52,480 KB
testcase_06 AC 88 ms
76,416 KB
testcase_07 AC 120 ms
78,464 KB
testcase_08 AC 45 ms
52,736 KB
testcase_09 AC 42 ms
52,736 KB
testcase_10 AC 282 ms
88,192 KB
testcase_11 AC 255 ms
87,040 KB
testcase_12 AC 161 ms
86,400 KB
testcase_13 AC 127 ms
78,592 KB
testcase_14 AC 133 ms
78,848 KB
testcase_15 AC 230 ms
85,376 KB
testcase_16 AC 128 ms
76,672 KB
testcase_17 AC 189 ms
83,584 KB
testcase_18 AC 256 ms
87,552 KB
testcase_19 AC 255 ms
87,680 KB
testcase_20 AC 170 ms
81,280 KB
testcase_21 AC 158 ms
81,024 KB
testcase_22 AC 288 ms
91,392 KB
testcase_23 AC 122 ms
78,848 KB
testcase_24 AC 217 ms
85,504 KB
testcase_25 AC 102 ms
76,800 KB
testcase_26 AC 132 ms
79,104 KB
testcase_27 AC 217 ms
85,504 KB
testcase_28 AC 187 ms
80,896 KB
testcase_29 AC 262 ms
88,704 KB
testcase_30 AC 97 ms
76,800 KB
testcase_31 AC 87 ms
76,416 KB
testcase_32 AC 106 ms
77,184 KB
testcase_33 AC 230 ms
87,936 KB
testcase_34 AC 90 ms
76,544 KB
testcase_35 AC 123 ms
78,720 KB
testcase_36 AC 166 ms
79,232 KB
testcase_37 AC 234 ms
85,760 KB
testcase_38 AC 187 ms
83,072 KB
testcase_39 AC 87 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
A = sorted([list(map(int,input().split())) for _ in range(M)],key=lambda x:x[1])
cnt = 1
cur = A[0][1]
for i in range(1,M):
    a,b = A[i]
    if a>=cur:
        cur = b
        cnt += 1
print(2*(N-1)-cnt)
0