結果

問題 No.1703 Much Matching
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-08 20:27:36
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 260 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 226,964 KB
最終ジャッジ日時 2024-08-08 20:28:04
合計ジャッジ時間 24,292 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
60,276 KB
testcase_01 AC 35 ms
52,688 KB
testcase_02 AC 34 ms
52,004 KB
testcase_03 AC 35 ms
54,456 KB
testcase_04 AC 45 ms
61,916 KB
testcase_05 AC 37 ms
58,932 KB
testcase_06 AC 1,124 ms
120,048 KB
testcase_07 AC 108 ms
78,572 KB
testcase_08 AC 1,183 ms
121,316 KB
testcase_09 AC 1,392 ms
129,456 KB
testcase_10 AC 205 ms
83,656 KB
testcase_11 AC 321 ms
87,352 KB
testcase_12 AC 100 ms
78,140 KB
testcase_13 AC 502 ms
96,548 KB
testcase_14 AC 74 ms
76,844 KB
testcase_15 AC 250 ms
85,024 KB
testcase_16 AC 726 ms
104,388 KB
testcase_17 AC 859 ms
109,056 KB
testcase_18 AC 74 ms
76,540 KB
testcase_19 AC 1,875 ms
146,436 KB
testcase_20 AC 240 ms
84,892 KB
testcase_21 TLE -
testcase_22 AC 799 ms
107,676 KB
testcase_23 AC 582 ms
99,576 KB
testcase_24 AC 74 ms
76,532 KB
testcase_25 AC 115 ms
79,364 KB
testcase_26 AC 423 ms
91,472 KB
testcase_27 AC 891 ms
111,680 KB
testcase_28 AC 1,880 ms
142,436 KB
testcase_29 AC 322 ms
88,152 KB
testcase_30 AC 456 ms
94,716 KB
testcase_31 AC 104 ms
77,472 KB
testcase_32 AC 915 ms
111,444 KB
testcase_33 AC 616 ms
99,400 KB
testcase_34 AC 99 ms
78,032 KB
testcase_35 AC 182 ms
82,652 KB
testcase_36 TLE -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,Q=map(int,input().split())
p=[tuple(map(int,input().split())) for i in range(Q)]
p.sort(key=lambda p:(p[0],-p[1]))
X=1<<30
q=[X]*(Q+2)
from bisect import bisect_left
for _,y in p:
	q[bisect_left(q,y)]=y
for i in range(Q+2):
	if q[i]==X:
		print(i)
		exit()
0