#40475: 參考答案 Python


cookie38052742@gmail.com (餅謙)

學校 : 不指定學校
編號 : 181771
來源 : [210.208.117.77]
最後登入時間 :
2024-10-18 10:36:45
e555. 10170 - The Hotel with Infinite Rooms -- UVA | From: [210.208.117.78] | 發表日期 : 2024-05-23 17:21

'''
https://zerojudge.tw/ShowProblem?problemid=e555
e555. 10170 - The Hotel with Infinite Rooms
'''

while True:
    try:
       
        S, D = map(int, input().split())
        while True:
            if D>0:    
                D -= S
                S += 1
            if D<=0:
                print(S - 1)
                break
       
    except:
        break
 
#40476: Re: 參考答案 Python


cookie38052742@gmail.com (餅謙)

學校 : 不指定學校
編號 : 181771
來源 : [210.208.117.77]
最後登入時間 :
2024-10-18 10:36:45
e555. 10170 - The Hotel with Infinite Rooms -- UVA | From: [210.208.117.78] | 發表日期 : 2024-05-23 17:22

乾這樣會TLE 抱歉沒測過就丟上來
 
ZeroJudge Forum