이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define pob pop_back
#define mp make_pair
#define pb push_back
#define mid (l+r)/2
#define test printf("test\n")
#define st first
#define nd second
#define superman ios::sync_with_stdio(0);cin.tie(0);
typedef long long ll;
typedef pair<ll,ll> pll;
ll INF = 1e9;
ll mod = 1e9+7;
double pi = acos(-1);
ll l,k,m,n,ans,r;
vector<ll> nums;
ll leftnum, rightnum;
ll lp,rp;
int main() {
//freopen(".gir","r",stdin);
//freopen(".cik","w",stdout);
cin>>n;
lp = 0; rp = n-1;
nums.resize(n);
for(int i=0; i<n; i++) {
cin>>nums[i];
}
leftnum = nums[0];
rightnum = nums[n-1];
while(lp < rp) {
if(leftnum == rightnum) {
lp++;
rp--;
leftnum = nums[lp];
rightnum = nums[rp];
continue;
}
else {
if(leftnum < rightnum) {
lp++;
leftnum += nums[lp];
}
else {
rp--;
rightnum += nums[rp];
}
ans++;
}
}
cout<<ans<<endl;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |