A問題 Best Body
1 2 3 4 5 6 7 8 9 10 11 |
n,s,t = map(int,input().split()) #変数n,s,tにint型に変換した標準入力値を代入 w = int(input()) #初日の体重を変数wへ代入 count = 0 #カウント変数→理想的な体重の範囲であるS<Tに含まれていた場合 if s <= w <= t: #初日の体重が理想体重の場合 count += 1 #カウント変数wに1を加える for i in range(n-1): #n-1日分ループさせる。(初日がnに含まれているため-1) a=int(input()) #変数aにint型にした入力値を代入(マイナスの場合もある) w += a #体重wに体重の変化量であるaを加える。 if s <= w <= t: #初日の体重が理想体重の場合 count += 1 #カウント変数wに1を加える print(count) #理想体重の範囲であった日の数を出力する。 |
コメント