Educational Codeforces Round 42 (Rated for Div. 2)
A题 Equator 水题,求前缀和大于等于总和的最小下标是多少?#include<iostream>using namespace std;int s[200005];int main(){ int n; while(cin>>n) { int x; long long res=0,ans=0; for(int i