結果

問題 No.1995 CHIKA Road
ユーザー KeroruKeroru
提出日時 2022-07-01 21:57:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 151 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 92,096 KB
最終ジャッジ日時 2024-05-04 16:22:28
合計ジャッジ時間 6,299 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,196 KB
testcase_01 AC 33 ms
53,932 KB
testcase_02 AC 31 ms
53,624 KB
testcase_03 AC 34 ms
52,256 KB
testcase_04 AC 31 ms
52,748 KB
testcase_05 AC 34 ms
53,796 KB
testcase_06 AC 76 ms
76,828 KB
testcase_07 AC 99 ms
79,224 KB
testcase_08 AC 36 ms
53,572 KB
testcase_09 AC 34 ms
53,200 KB
testcase_10 AC 189 ms
88,044 KB
testcase_11 AC 210 ms
87,276 KB
testcase_12 AC 138 ms
87,108 KB
testcase_13 AC 110 ms
79,048 KB
testcase_14 AC 109 ms
79,328 KB
testcase_15 AC 195 ms
85,644 KB
testcase_16 AC 82 ms
77,196 KB
testcase_17 AC 156 ms
83,300 KB
testcase_18 AC 213 ms
87,988 KB
testcase_19 AC 217 ms
87,900 KB
testcase_20 AC 137 ms
81,420 KB
testcase_21 AC 128 ms
81,308 KB
testcase_22 AC 211 ms
89,764 KB
testcase_23 AC 102 ms
79,308 KB
testcase_24 AC 184 ms
85,976 KB
testcase_25 AC 84 ms
77,504 KB
testcase_26 AC 109 ms
79,360 KB
testcase_27 AC 186 ms
86,016 KB
testcase_28 AC 140 ms
81,440 KB
testcase_29 AC 215 ms
87,972 KB
testcase_30 AC 84 ms
77,108 KB
testcase_31 AC 72 ms
77,024 KB
testcase_32 AC 90 ms
77,624 KB
testcase_33 AC 188 ms
86,068 KB
testcase_34 AC 72 ms
76,996 KB
testcase_35 AC 106 ms
79,128 KB
testcase_36 AC 112 ms
79,736 KB
testcase_37 AC 219 ms
92,096 KB
testcase_38 AC 156 ms
83,432 KB
testcase_39 AC 75 ms
77,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I=lambda:list(map(int,input().split()))
n,m=I()
q=sorted([I()for i in range(m)],key=lambda x:x[1])
r=0
d=2*n-2
for a,b in q:
 if a>=r:r=b;d-=1
print(d)
0