跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2713. Stripe 2

    ID: 2719 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 6 上传者: 标签>二分动态规划排序算法思想编程与模拟提高难度共享题库Codeforces英文题面题目来源题面语言

Stripe 2

题目描述

C. Stripe 2
time limit per test
1 second
memory limit per test
64 megabytes
input
standard input
output
standard output

Once Bob took a paper stripe of n squares (the height of the stripe is 1 square). In each square he wrote an integer number, possibly negative. He became interested in how many ways exist to cut this stripe into three pieces so that the sum of numbers from each piece is equal to the sum of numbers from any other piece, and each piece contains positive integer amount of squares. Would you help Bob solve this problem?

Input

The first input line contains integer n (1≤n≤105) − amount of squares in the stripe. The second line contains n space-separated numbers − they are the numbers written in the squares of the stripe. These numbers are integer and do not exceed 10000 in absolute value.

Output

Output the amount of ways to cut the stripe into three non-empty pieces so that the sum of numbers from each piece is equal to the sum of numbers from any other piece. Don't forget that it's allowed to cut the stripe along the squares' borders only.

Examples
Input
4
1 2 3 3
Output
1
Input
5
1 2 3 4 5
Output
0

题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 2379 题。保留原作者与原赛事署名。