Hitachi help available
DM @MRTRUELIVING_IX
FOR π― TEST CLEARANCEβοΈ βΆοΈ
DM @MRTRUELIVING_IX
FOR π― TEST CLEARANCE
First come first serve based hiring
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Hitachi help done βΆοΈ βοΈ π£
All MCQS + 3 coding ( c#, python,Java)
@MRTRUELIVING_IX
@MRTRUELIVING_IX
All placement help available
#HITACHI #DONE
All MCQS + 3 coding ( c#, python,Java)
@MRTRUELIVING_IX
@MRTRUELIVING_IX
All placement help available
#HITACHI #DONE
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Placement help available
CAPGEMINI (10 AM, 1 PM, 4 PM)
INFOSYS ( 11 AM)
TECH M(10.30 AM)
L& T MINDTREE
HITACHI ( UPTO 5 PM )
IBM
AMAZON
ANY OTHER OA HELP AVAILABLEβΆοΈ π£
All placement help available ( ON // OFF)
π― TEST CLEARANCE
-@MRTRUELIVING_IX
-@MRTRUELIVING_IX
REMOTE ACCESS & High success rateβοΈ π
CAPGEMINI (10 AM, 1 PM, 4 PM)
INFOSYS ( 11 AM)
TECH M(10.30 AM)
L& T MINDTREE
HITACHI ( UPTO 5 PM )
IBM
AMAZON
ANY OTHER OA HELP AVAILABLE
All placement help available ( ON // OFF)
π― TEST CLEARANCE
-@MRTRUELIVING_IX
-@MRTRUELIVING_IX
REMOTE ACCESS & High success rate
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Infosys SP Exam Answers will be uploaded here
https://t.me/code_alphix
Infosys Exam Discussion Group ππ»
https://t.me/code_iconix
Must join both the groups !
Share these groups with your friends π
https://t.me/code_alphix
Infosys Exam Discussion Group ππ»
https://t.me/code_iconix
Must join both the groups !
Share these groups with your friends π
π2
π Walmart is hiring for Interns
Batches Eligible: 2025
π Apply Link:
https://walmart.wd5.myworkdayjobs.com/WalmartExternal/job/IN-KA-BANGALORE-Home-Office-Building-11/XMLNAME--IND--Grad-Intern---No-Work-Experience_R-2057061/apply
Batches Eligible: 2025
π Apply Link:
https://walmart.wd5.myworkdayjobs.com/WalmartExternal/job/IN-KA-BANGALORE-Home-Office-Building-11/XMLNAME--IND--Grad-Intern---No-Work-Experience_R-2057061/apply
π Adobe Apprenticeship Program
Batches Eligible: 2023 and 2024
π Apply Link:
https://company.naukri.com/mailers/adobe/apprenticeship3.html?utm_campaign=fn_resdex_jobseeker_contact_mail_20241206&utm_medium=mail&utm_source=mail
Batches Eligible: 2023 and 2024
π Apply Link:
https://company.naukri.com/mailers/adobe/apprenticeship3.html?utm_campaign=fn_resdex_jobseeker_contact_mail_20241206&utm_medium=mail&utm_source=mail
π₯1
Ready to go Capgemini ( 10 am slots)
OA -@MRTRUELIVING_IX
#CAPGEMINI
OA -@MRTRUELIVING_IX
#CAPGEMINI
CAPGEMINI 1 PM SLOTS ARE AVAILABLE
π₯1π1
Capgemini help done π
All sections are done β
-@MRTRUELIVING_IX
-@MRTRUELIVING_IX
ALL PLACEMENT HELP AVAILABLE
#CAPGEMINI #ONCAMPUS #HELPDONE
All sections are done β
-@MRTRUELIVING_IX
-@MRTRUELIVING_IX
ALL PLACEMENT HELP AVAILABLE
#CAPGEMINI #ONCAMPUS #HELPDONE
#Slot1
Capgemini help done π
All sections are done β
-@MRTRUELIVING_IX
-@MRTRUELIVING_IX
ALL PLACEMENT HELP AVAILABLE
#CAPGEMINI #ONCAMPUS #HELPDONE
All sections are done β
-@MRTRUELIVING_IX
-@MRTRUELIVING_IX
ALL PLACEMENT HELP AVAILABLE
#CAPGEMINI #ONCAMPUS #HELPDONE
#Slot2
Capgemini (1 pm SLOTS are available)
π― Test clearance βΊοΈ
@MRTRUELIVING_IX
@MRTRUELIVING_IX
PREVIEW
https://t.me/code_alphix/4319?single
π― Test clearance βΊοΈ
@MRTRUELIVING_IX
@MRTRUELIVING_IX
PREVIEW
https://t.me/code_alphix/4319?single
def canPurchaseWithMinPrice(P, N, M, min_price):
counts = []
for shop in P:
counts.append(sum(1 for price in shop if price >= min_price))
counts.sort(reverse=True)
total_items = 0
for i in range(N - 1):
total_items += counts[i]
if total_items >= M:
return True
return total_items >= M
def maxMinPrice(N, M, P):
low, high = 1, 100000
answer = 0
while low <= high:
mid = (low + high) // 2
if canPurchaseWithMinPrice(P, N, M, mid):
answer = mid
low = mid + 1
else:
high = mid - 1
return answer
N = int(input())
M = int(input())
P = [list(map(int, input().split())) for _ in range(N)]
result = maxMinPrice(N, M, P)
print(result)
MaxMinpriceπ