結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
58,900 KB
testcase_01 AC 36 ms
53,132 KB
testcase_02 AC 36 ms
52,832 KB
testcase_03 AC 38 ms
52,464 KB
testcase_04 AC 48 ms
61,688 KB
testcase_05 AC 42 ms
58,576 KB
testcase_06 AC 1,124 ms
119,820 KB
testcase_07 AC 120 ms
78,956 KB
testcase_08 AC 1,242 ms
121,296 KB
testcase_09 AC 1,402 ms
129,396 KB
testcase_10 AC 217 ms
83,440 KB
testcase_11 AC 328 ms
87,220 KB
testcase_12 AC 112 ms
78,364 KB
testcase_13 AC 535 ms
96,128 KB
testcase_14 AC 85 ms
77,092 KB
testcase_15 AC 255 ms
85,248 KB
testcase_16 AC 741 ms
104,524 KB
testcase_17 AC 879 ms
109,432 KB
testcase_18 AC 84 ms
77,232 KB
testcase_19 AC 1,920 ms
146,048 KB
testcase_20 AC 253 ms
84,864 KB
testcase_21 TLE -
testcase_22 AC 906 ms
107,776 KB
testcase_23 AC 645 ms
99,876 KB
testcase_24 AC 86 ms
76,288 KB
testcase_25 AC 136 ms
79,104 KB
testcase_26 AC 427 ms
91,392 KB
testcase_27 AC 929 ms
111,872 KB
testcase_28 AC 1,860 ms
143,104 KB
testcase_29 AC 347 ms
88,448 KB
testcase_30 AC 494 ms
94,784 KB
testcase_31 AC 106 ms
77,824 KB
testcase_32 AC 945 ms
111,452 KB
testcase_33 AC 674 ms
99,580 KB
testcase_34 AC 114 ms
78,208 KB
testcase_35 AC 195 ms
82,356 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 a:(a[0],-a[1]))
X=1<<10
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