結果

問題 No.1995 CHIKA Road
ユーザー KeroruKeroru
提出日時 2022-07-01 22:00:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 153 bytes
コンパイル時間 799 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 122,752 KB
最終ジャッジ日時 2024-05-04 16:26:09
合計ジャッジ時間 5,809 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,584 KB
testcase_01 AC 31 ms
51,712 KB
testcase_02 AC 32 ms
51,968 KB
testcase_03 AC 32 ms
51,456 KB
testcase_04 AC 34 ms
52,352 KB
testcase_05 AC 33 ms
52,352 KB
testcase_06 AC 46 ms
64,768 KB
testcase_07 AC 69 ms
78,080 KB
testcase_08 AC 36 ms
51,840 KB
testcase_09 AC 32 ms
51,840 KB
testcase_10 AC 161 ms
121,344 KB
testcase_11 AC 173 ms
121,124 KB
testcase_12 AC 98 ms
121,088 KB
testcase_13 AC 78 ms
82,944 KB
testcase_14 AC 80 ms
84,480 KB
testcase_15 AC 173 ms
119,956 KB
testcase_16 AC 55 ms
68,352 KB
testcase_17 AC 116 ms
100,608 KB
testcase_18 AC 177 ms
122,624 KB
testcase_19 AC 181 ms
122,680 KB
testcase_20 AC 109 ms
95,872 KB
testcase_21 AC 98 ms
92,416 KB
testcase_22 AC 183 ms
122,752 KB
testcase_23 AC 75 ms
79,744 KB
testcase_24 AC 165 ms
118,912 KB
testcase_25 AC 61 ms
70,784 KB
testcase_26 AC 84 ms
82,048 KB
testcase_27 AC 176 ms
115,072 KB
testcase_28 AC 104 ms
92,160 KB
testcase_29 AC 192 ms
122,752 KB
testcase_30 AC 60 ms
70,528 KB
testcase_31 AC 47 ms
64,128 KB
testcase_32 AC 64 ms
73,728 KB
testcase_33 AC 161 ms
114,816 KB
testcase_34 AC 49 ms
64,896 KB
testcase_35 AC 78 ms
80,796 KB
testcase_36 AC 86 ms
84,992 KB
testcase_37 AC 180 ms
122,496 KB
testcase_38 AC 125 ms
101,504 KB
testcase_39 AC 48 ms
64,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,*z=map(int,open(0).read().split())
r=0
d=2*n-2
for a,b in sorted([(a,b)for a,b in zip(z[::2],z[1::2])],key=lambda x:x[1]):
 if a>=r:r=b;d-=1
print(d)
0