結果

問題 No.2182 KODOKU Stone
ユーザー MasKoaTSMasKoaTS
提出日時 2022-08-20 16:58:20
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 658 bytes
コンパイル時間 512 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 173,488 KB
最終ジャッジ日時 2024-11-14 11:59:49
合計ジャッジ時間 25,188 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,832 KB
testcase_01 AC 37 ms
53,048 KB
testcase_02 AC 39 ms
54,072 KB
testcase_03 AC 38 ms
53,624 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 49 ms
61,872 KB
testcase_07 WA -
testcase_08 AC 50 ms
62,264 KB
testcase_09 AC 51 ms
62,908 KB
testcase_10 AC 36 ms
53,140 KB
testcase_11 AC 989 ms
167,364 KB
testcase_12 AC 1,430 ms
162,492 KB
testcase_13 AC 133 ms
100,872 KB
testcase_14 WA -
testcase_15 AC 990 ms
169,820 KB
testcase_16 AC 1,055 ms
173,488 KB
testcase_17 AC 114 ms
96,712 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 143 ms
83,876 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 100 ms
76,428 KB
testcase_26 AC 85 ms
76,800 KB
testcase_27 AC 85 ms
77,100 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 1,204 ms
132,332 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 37 ms
53,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
K = list(map(int, input().split()))
T = [0] * N
A = [[] for _ in [0] * N]
st = set([])
for i in range(N):
	T[i] = int(input())
	A[i] = list(map(int, input().split()))
	st |= set(A[i])
Alis = sorted(st)

ok = 0
ng = len(Alis)

def check():
	B = sorted([(sum((k >= md) for k in lis), len(lis)) for lis in A])
	for k in K[::-1]:
		if(B[-1][0] >= k):
			return True
		elif(len(B) == 1):
			return (B[-1][0] == B[-1][1])
		elif(B[-1][0] < k-1):
			break
		B.pop()
	return False

while(ng - ok > 1):
	mid = (ok + ng) >> 1
	md = Alis[mid]
	if check():
		ok = mid
	else:
		ng = mid

ans = Alis[ok]
print(ans)	
0