結果

問題 No.1995 CHIKA Road
ユーザー googol_S0googol_S0
提出日時 2022-07-01 21:54:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 86,852 KB
最終ジャッジ日時 2024-05-04 16:19:20
合計ジャッジ時間 6,185 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,444 KB
testcase_01 AC 39 ms
52,800 KB
testcase_02 AC 34 ms
52,340 KB
testcase_03 AC 32 ms
52,256 KB
testcase_04 AC 41 ms
52,812 KB
testcase_05 AC 35 ms
53,160 KB
testcase_06 AC 67 ms
76,960 KB
testcase_07 AC 97 ms
78,696 KB
testcase_08 AC 35 ms
53,436 KB
testcase_09 AC 41 ms
53,572 KB
testcase_10 AC 197 ms
86,348 KB
testcase_11 AC 209 ms
85,164 KB
testcase_12 AC 129 ms
84,848 KB
testcase_13 AC 102 ms
78,956 KB
testcase_14 AC 104 ms
78,880 KB
testcase_15 AC 184 ms
83,744 KB
testcase_16 AC 74 ms
76,964 KB
testcase_17 AC 152 ms
83,160 KB
testcase_18 AC 232 ms
85,568 KB
testcase_19 AC 210 ms
85,460 KB
testcase_20 AC 133 ms
80,720 KB
testcase_21 AC 127 ms
80,352 KB
testcase_22 AC 197 ms
84,212 KB
testcase_23 AC 101 ms
78,520 KB
testcase_24 AC 181 ms
84,076 KB
testcase_25 AC 81 ms
77,184 KB
testcase_26 AC 105 ms
78,604 KB
testcase_27 AC 187 ms
83,984 KB
testcase_28 AC 135 ms
80,344 KB
testcase_29 AC 217 ms
86,852 KB
testcase_30 AC 79 ms
76,852 KB
testcase_31 AC 69 ms
77,004 KB
testcase_32 AC 85 ms
76,920 KB
testcase_33 AC 172 ms
83,816 KB
testcase_34 AC 68 ms
77,004 KB
testcase_35 AC 105 ms
78,564 KB
testcase_36 AC 111 ms
79,108 KB
testcase_37 AC 198 ms
83,924 KB
testcase_38 AC 151 ms
82,288 KB
testcase_39 AC 78 ms
77,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
X=[tuple(map(int,input().split())) for i in range(M)]
X.sort(key=lambda x:x[1])
ANS=2*N-2
v=0
for i in range(M):
  if v<=X[i][0]:
    v=X[i][1]
    ANS-=1
print(ANS)
0