A 种植所有植物所需时间累加 n 个植物所需的阳光总和除以 50 向上取整即是需要获得的阳光次数每次获取阳光需要 5 秒,乘以 5 即是答案,时间复杂度 O(n)注意输入较多,请使用较快读入方式 #include<bits/stdc++.h> #define IOS ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); using namespace std; typedef double db; typedef long long ll; const int N=3e5+10; ll t,sum; int main() { ...