您的位置:首页 > 其它

湖南大学ACM程序设计新生杯大赛 - A Array

2018-01-23 19:34 253 查看
链接:https://www.nowcoder.com/acm/contest/55/A

来源:牛客网

时间限制:C/C++ 1秒,其他语言2秒

空间限制:C/C++ 131072K,其他语言262144K

64bit IO Format: %lld

题目描述

Given an array A with length n  a[1],a[2],...,a
where a[i] (1<=i<=n) is positive integer.

Count the number of pair (l,r) such that a[l],a[l+1],...,a[r] can be rearranged to form a geometric seq
4000
uence.

Geometric sequence is an array where each term after the first is found by multiplying the previous one by a fixed, non-zero number called the common ratio. i.e. A = [1,2,4,8,16] is a geometric sequence.

输入描述:

The first line is an integer n (1 <= n <= 100000).
The second line consists of n integer a[1],a[2],...,a
where a[i] <= 100000 for 1<=i<=n.

输出描述:

An integer answer for the problem.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐