結果

問題 No.2157 崖
ユーザー tassei903tassei903
提出日時 2022-12-09 22:01:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 773 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 95,104 KB
最終ジャッジ日時 2024-10-14 21:56:55
合計ジャッジ時間 9,955 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 41 ms
52,480 KB
testcase_05 AC 40 ms
52,480 KB
testcase_06 AC 40 ms
52,352 KB
testcase_07 AC 40 ms
52,480 KB
testcase_08 WA -
testcase_09 AC 44 ms
52,352 KB
testcase_10 AC 40 ms
52,480 KB
testcase_11 WA -
testcase_12 AC 42 ms
52,096 KB
testcase_13 WA -
testcase_14 AC 714 ms
93,404 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 634 ms
90,368 KB
testcase_18 AC 628 ms
90,240 KB
testcase_19 WA -
testcase_20 AC 853 ms
95,104 KB
testcase_21 AC 804 ms
94,464 KB
testcase_22 AC 597 ms
89,560 KB
testcase_23 AC 40 ms
51,968 KB
testcase_24 AC 74 ms
71,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

n, m = na()
d = [sorted(na()) for i in range(n)]
if n == 1:
    print(0)
    exit()
from bisect import bisect_left as bl
ans = float("inf")
for i in range(m):
    x = d[0][i]
    z = 0
    for j in range(1, n):
        y = bl(d[j], x)
        if y == m:
            break
        z = max(z, d[j][y]-x)
        x = d[j][y]
    else:
        ans = min(ans, z)

if ans == float("inf"):
    print(-1)
else:
    print(ans)
0