結果

問題 No.1995 CHIKA Road
ユーザー rlangevinrlangevin
提出日時 2022-12-30 03:50:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 329 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 81,676 KB
最終ジャッジ日時 2024-05-03 21:22:04
合計ジャッジ時間 9,209 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,232 KB
testcase_01 AC 33 ms
53,768 KB
testcase_02 AC 34 ms
52,888 KB
testcase_03 AC 38 ms
51,824 KB
testcase_04 AC 38 ms
53,064 KB
testcase_05 AC 39 ms
53,576 KB
testcase_06 AC 84 ms
76,044 KB
testcase_07 AC 132 ms
77,800 KB
testcase_08 AC 42 ms
55,064 KB
testcase_09 AC 40 ms
53,556 KB
testcase_10 AC 329 ms
81,676 KB
testcase_11 AC 321 ms
81,360 KB
testcase_12 AC 307 ms
81,488 KB
testcase_13 AC 143 ms
78,544 KB
testcase_14 AC 140 ms
78,128 KB
testcase_15 AC 277 ms
81,108 KB
testcase_16 AC 96 ms
76,444 KB
testcase_17 AC 218 ms
79,512 KB
testcase_18 AC 321 ms
81,116 KB
testcase_19 AC 310 ms
81,492 KB
testcase_20 AC 200 ms
79,684 KB
testcase_21 AC 179 ms
79,296 KB
testcase_22 AC 301 ms
81,248 KB
testcase_23 AC 124 ms
78,136 KB
testcase_24 AC 276 ms
81,128 KB
testcase_25 AC 105 ms
76,892 KB
testcase_26 AC 141 ms
78,292 KB
testcase_27 AC 265 ms
81,180 KB
testcase_28 AC 177 ms
79,256 KB
testcase_29 AC 314 ms
81,148 KB
testcase_30 AC 100 ms
76,572 KB
testcase_31 AC 76 ms
76,328 KB
testcase_32 AC 106 ms
77,248 KB
testcase_33 AC 254 ms
80,876 KB
testcase_34 AC 78 ms
76,160 KB
testcase_35 AC 135 ms
78,324 KB
testcase_36 AC 155 ms
78,456 KB
testcase_37 AC 319 ms
80,868 KB
testcase_38 AC 224 ms
79,752 KB
testcase_39 AC 74 ms
76,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
D = []
for i in range(M):
    A, B = map(int, input().split())
    D.append((A, B))
    
D.sort(reverse=True)
ans = 2 * N - 2
pre = 10 ** 18
for a, b in D:
    if b <= pre:
        ans -= 1
        pre = a
print(ans)
0