CodeFoeces-461A

题目

原题链接:A. Appleman and Toastman

题意

把所给数组拆成两个,每次累加 ,拆到1个为止。

代码

#include
using namespace std;
int main() {
    int n,s[300001];
    long long sum=0;
    scanf("%d",&n);
    for(int i=0;i

你可能感兴趣的:(CodeFoeces-461A)