結果
問題 | No.2182 KODOKU Stone |
ユーザー | 👑 rin204 |
提出日時 | 2023-12-29 15:15:10 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 466 bytes |
コンパイル時間 | 250 ms |
コンパイル使用メモリ | 82,008 KB |
実行使用メモリ | 115,388 KB |
最終ジャッジ日時 | 2024-09-27 16:07:00 |
合計ジャッジ時間 | 14,750 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
53,348 KB |
testcase_01 | AC | 37 ms
52,736 KB |
testcase_02 | AC | 41 ms
59,332 KB |
testcase_03 | AC | 35 ms
52,748 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 45 ms
61,976 KB |
testcase_07 | WA | - |
testcase_08 | AC | 46 ms
61,756 KB |
testcase_09 | AC | 47 ms
61,492 KB |
testcase_10 | WA | - |
testcase_11 | AC | 682 ms
115,388 KB |
testcase_12 | AC | 730 ms
114,368 KB |
testcase_13 | AC | 116 ms
89,240 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 666 ms
114,896 KB |
testcase_17 | AC | 111 ms
87,712 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 133 ms
76,892 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 90 ms
76,800 KB |
testcase_26 | AC | 87 ms
76,736 KB |
testcase_27 | AC | 86 ms
76,832 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 474 ms
99,500 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 | 35 ms
52,948 KB |
ソースコード
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 = [sum(a >= x for a in row) for row in A] C.sort() tf = False for c, k in zip(C, K): if tf: c += 1 tf = c >= k return tf l = 1 r = 1 << 30 while r - l > 1: mid = (l + r) // 2 if ok(mid): l = mid else: r = mid print(l)