#34801: python救星真香


10955052@st.chjhs.tp.edu.tw (07段律言)

學校 : 不指定學校
編號 : 222548
來源 : [211.23.154.151]
最後登入時間 :
2023-05-26 09:35:45
e622. 3. 虛擬寵物大師 (Master) -- 2019年10月TOI練習賽新手組 | From: [210.243.21.253] | 發表日期 : 2023-04-17 19:57

n,S = map(int,input().split())
S = S//1000
cpiv = []
for i in range(0,n):
    CP,IV = map(int,input().split())
    if IV <= 29:
        CP += S * 10 
        cpiv.append(CP)
    elif IV <= 39:
        CP += S * 50 
        cpiv.append(CP)
    else:
        CP += S * 100
        cpiv.append(CP)
max = max(cpiv)
print(cpiv.index(max)+1, max)
 
ZeroJudge Forum