結果

問題 No.1995 CHIKA Road
ユーザー KeroruKeroru
提出日時 2022-07-01 22:00:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 153 bytes
コンパイル時間 462 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 122,820 KB
最終ジャッジ日時 2024-11-26 05:02:53
合計ジャッジ時間 6,178 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,492 KB
testcase_01 AC 37 ms
53,788 KB
testcase_02 AC 38 ms
53,448 KB
testcase_03 AC 39 ms
53,016 KB
testcase_04 AC 40 ms
53,784 KB
testcase_05 AC 42 ms
53,496 KB
testcase_06 AC 55 ms
65,964 KB
testcase_07 AC 86 ms
78,388 KB
testcase_08 AC 43 ms
52,220 KB
testcase_09 AC 41 ms
53,932 KB
testcase_10 AC 186 ms
121,384 KB
testcase_11 AC 199 ms
121,124 KB
testcase_12 AC 112 ms
121,780 KB
testcase_13 AC 88 ms
84,848 KB
testcase_14 AC 91 ms
84,620 KB
testcase_15 AC 192 ms
119,928 KB
testcase_16 AC 59 ms
68,864 KB
testcase_17 AC 130 ms
100,784 KB
testcase_18 AC 202 ms
122,448 KB
testcase_19 AC 203 ms
122,688 KB
testcase_20 AC 124 ms
97,296 KB
testcase_21 AC 115 ms
93,284 KB
testcase_22 AC 201 ms
122,304 KB
testcase_23 AC 82 ms
80,856 KB
testcase_24 AC 186 ms
118,740 KB
testcase_25 AC 67 ms
72,508 KB
testcase_26 AC 90 ms
82,588 KB
testcase_27 AC 177 ms
114,904 KB
testcase_28 AC 114 ms
92,332 KB
testcase_29 AC 201 ms
122,820 KB
testcase_30 AC 61 ms
70,784 KB
testcase_31 AC 49 ms
65,140 KB
testcase_32 AC 70 ms
74,080 KB
testcase_33 AC 176 ms
114,716 KB
testcase_34 AC 53 ms
66,240 KB
testcase_35 AC 85 ms
82,188 KB
testcase_36 AC 94 ms
85,636 KB
testcase_37 AC 200 ms
122,620 KB
testcase_38 AC 134 ms
101,528 KB
testcase_39 AC 49 ms
64,820 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