結果

問題 No.2182 KODOKU Stone
ユーザー 👑 rin204rin204
提出日時 2023-12-29 15:39:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 967 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 161,348 KB
最終ジャッジ日時 2024-09-27 16:12:42
合計ジャッジ時間 16,628 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,012 KB
testcase_01 AC 39 ms
52,640 KB
testcase_02 AC 45 ms
60,172 KB
testcase_03 AC 38 ms
52,932 KB
testcase_04 AC 39 ms
52,464 KB
testcase_05 AC 39 ms
53,076 KB
testcase_06 AC 49 ms
62,228 KB
testcase_07 AC 52 ms
63,116 KB
testcase_08 AC 51 ms
62,744 KB
testcase_09 AC 53 ms
62,872 KB
testcase_10 AC 39 ms
52,380 KB
testcase_11 AC 936 ms
153,636 KB
testcase_12 AC 918 ms
154,272 KB
testcase_13 AC 131 ms
89,236 KB
testcase_14 AC 137 ms
77,800 KB
testcase_15 AC 955 ms
148,140 KB
testcase_16 AC 933 ms
161,348 KB
testcase_17 AC 120 ms
87,876 KB
testcase_18 AC 823 ms
146,096 KB
testcase_19 AC 457 ms
100,464 KB
testcase_20 AC 699 ms
126,948 KB
testcase_21 AC 187 ms
78,452 KB
testcase_22 AC 144 ms
77,008 KB
testcase_23 WA -
testcase_24 AC 264 ms
82,980 KB
testcase_25 AC 101 ms
76,712 KB
testcase_26 AC 97 ms
77,216 KB
testcase_27 AC 97 ms
76,820 KB
testcase_28 AC 660 ms
120,332 KB
testcase_29 AC 776 ms
134,896 KB
testcase_30 AC 862 ms
147,956 KB
testcase_31 AC 627 ms
119,476 KB
testcase_32 AC 636 ms
115,072 KB
testcase_33 AC 721 ms
130,556 KB
testcase_34 AC 238 ms
80,212 KB
testcase_35 AC 741 ms
130,032 KB
testcase_36 AC 235 ms
80,224 KB
testcase_37 AC 863 ms
147,028 KB
testcase_38 AC 39 ms
53,324 KB
testcase_39 AC 39 ms
52,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
K = list(map(int, input().split()))
A = [[] for _ in range(n)]
for i in range(n):
    input()
    A[i] = list(map(int, input().split()))


def ok(x):
    C = []
    all_ = []
    for row in A:
        c = sum(a >= x for a in row)
        if c == len(row):
            all_.append(c)
        else:
            C.append(c)

    if not C:
        return True
    C.sort()
    all_.sort(reverse=True)
    for k in K[::-1]:
        if C and C[-1] >= k:
            return True
        elif all_ and all_[0] >= k:
            return True

        if C[-1] == k - 1:
            if all_ and all_[-1] < k - 1:
                all_.pop()
            else:
                C.pop()
        elif all_:
            all_.pop()
        else:
            return False

        if not C and all_:
            return True

    return False


l = 1
r = 1 << 30
while r - l > 1:
    mid = (l + r) // 2
    if ok(mid):
        l = mid
    else:
        r = mid

print(l)
0