結果

問題 No.2182 KODOKU Stone
ユーザー ShirotsumeShirotsume
提出日時 2022-09-21 01:22:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,182 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 260,012 KB
最終ジャッジ日時 2024-11-14 12:03:33
合計ジャッジ時間 15,857 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
59,824 KB
testcase_01 AC 36 ms
171,524 KB
testcase_02 AC 37 ms
59,460 KB
testcase_03 AC 38 ms
53,284 KB
testcase_04 AC 38 ms
52,688 KB
testcase_05 AC 38 ms
54,452 KB
testcase_06 WA -
testcase_07 AC 38 ms
53,792 KB
testcase_08 WA -
testcase_09 AC 37 ms
53,684 KB
testcase_10 WA -
testcase_11 AC 432 ms
260,012 KB
testcase_12 TLE -
testcase_13 AC 75 ms
83,140 KB
testcase_14 AC 84 ms
76,576 KB
testcase_15 TLE -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 564 ms
250,816 KB
testcase_19 AC 246 ms
154,316 KB
testcase_20 AC 512 ms
236,544 KB
testcase_21 WA -
testcase_22 AC 77 ms
76,260 KB
testcase_23 WA -
testcase_24 AC 152 ms
93,492 KB
testcase_25 AC 70 ms
76,188 KB
testcase_26 AC 70 ms
76,096 KB
testcase_27 AC 70 ms
76,228 KB
testcase_28 AC 415 ms
207,324 KB
testcase_29 AC 436 ms
231,612 KB
testcase_30 WA -
testcase_31 AC 364 ms
233,628 KB
testcase_32 AC 354 ms
205,800 KB
testcase_33 AC 480 ms
237,520 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 37 ms
156,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

n = ii()

k = [i - 1 for i in li()][::-1]
a = []
for _ in range(n):
    _ = ii()
    a.append(list(sorted(li(), reverse=True)))

def check(x, s, ix):
    while s:
        for i in s:
            if len(a[i]) > k[ix] and a[i][k[ix]] >= x:
                return True
            if len(a[i]) - 1 > k[ix] and k[ix] - 1 >= 0 and a[i][k[ix] - 1] >= x and ix + 1 < len(k):
                s.discard(i)
                ix += 1
                break
            if len(a[i]) == k[ix] and a[i][min(len(a[i]) - 1, k[ix])] >= x:
                s.discard(i)
                ix += 1
                x = a[i][min(len(a[i]) - 1, k[ix])]
                break
            if len(a[i]) < k[ix] and a[i][min(len(a[i]) - 1, k[ix])] >= x:
                s.discard(i)
                ix += 1
                break
        else:
            return False


ok = 0
ng = 10 ** 9 + 1

while abs(ok - ng) > 1:
    mid = (ok + ng) // 2
    if check(mid, set(range(n)), 0):
        ok = mid
    else:
        ng = mid
print(ok)
0