結果

問題 No.2855 Move on Grid
ユーザー ルクルク
提出日時 2024-08-25 15:44:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 325 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 76,932 KB
最終ジャッジ日時 2024-08-25 15:44:09
合計ジャッジ時間 4,453 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 50 ms
65,980 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 62 ms
76,304 KB
testcase_11 AC 63 ms
76,256 KB
testcase_12 AC 63 ms
76,028 KB
testcase_13 AC 60 ms
76,072 KB
testcase_14 AC 60 ms
76,068 KB
testcase_15 AC 61 ms
76,048 KB
testcase_16 AC 62 ms
76,252 KB
testcase_17 AC 66 ms
76,328 KB
testcase_18 AC 62 ms
76,052 KB
testcase_19 AC 62 ms
76,328 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k=map(int,input().split())
mp=[list(map(int,input().split())) for _ in range(n)]
dist=[[] for _ in range(n+m-1)]
for i in range(n):
	for j in range(m):
		dist[i+j].append(mp[i][j])
ans=[]
for i in range(n+m-1):
	ans.append(max(dist[i]))
ans.sort()
for i in range(k):
	if i>=n+m-1:
		break
	ans[i]=int(1e9)
print(min(ans))
0