#45913: curry with 36 points 7 rebounds 9 assists 1 steal 2 blocks 0 foul 1到10分我給11分


1121226@stu.wghs.tp.edu.tw (Arthur✨EC)

學校 : 臺北市私立薇閣高級中學
編號 : 252772
來源 : [60.248.154.139]
最後登入時間 :
2025-08-21 12:59:45

#include <bits/stdc++.h>  
using namespace std;  
int main() {  
    long long a,b, days;
    while(cin>>a>>b){
        days=a,b-=a; 
        // 將days初始化為初始數量a 
        // 從b減去初始數量a(b現在是剩餘的數量)
        while(b > 0){
            days++; // 天數計數器加1 
            b-=days; // 將b減去當前的天數
        }
        cout<<days<<endl;
    }
    return 0;
}