結果

問題 No.1703 Much Matching
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-08 20:33:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 975 ms / 2,000 ms
コード長 310 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 142,144 KB
最終ジャッジ日時 2024-08-08 20:33:34
合計ジャッジ時間 9,189 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,032 KB
testcase_01 AC 37 ms
52,264 KB
testcase_02 AC 39 ms
53,068 KB
testcase_03 AC 39 ms
53,208 KB
testcase_04 AC 48 ms
62,072 KB
testcase_05 AC 43 ms
59,176 KB
testcase_06 AC 285 ms
89,272 KB
testcase_07 AC 85 ms
76,576 KB
testcase_08 AC 301 ms
90,056 KB
testcase_09 AC 343 ms
93,196 KB
testcase_10 AC 105 ms
77,300 KB
testcase_11 AC 127 ms
78,168 KB
testcase_12 AC 81 ms
76,604 KB
testcase_13 AC 172 ms
80,424 KB
testcase_14 AC 71 ms
75,044 KB
testcase_15 AC 118 ms
77,568 KB
testcase_16 AC 205 ms
82,892 KB
testcase_17 AC 239 ms
84,828 KB
testcase_18 AC 72 ms
74,344 KB
testcase_19 AC 467 ms
103,172 KB
testcase_20 AC 112 ms
77,804 KB
testcase_21 AC 524 ms
109,056 KB
testcase_22 AC 228 ms
84,124 KB
testcase_23 AC 193 ms
81,260 KB
testcase_24 AC 101 ms
73,836 KB
testcase_25 AC 91 ms
76,756 KB
testcase_26 AC 148 ms
78,900 KB
testcase_27 AC 266 ms
85,440 KB
testcase_28 AC 433 ms
99,928 KB
testcase_29 AC 135 ms
78,344 KB
testcase_30 AC 163 ms
79,424 KB
testcase_31 AC 111 ms
76,844 KB
testcase_32 AC 249 ms
85,880 KB
testcase_33 AC 187 ms
80,880 KB
testcase_34 AC 82 ms
76,716 KB
testcase_35 AC 103 ms
76,992 KB
testcase_36 AC 975 ms
142,144 KB
testcase_37 AC 60 ms
65,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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