CF1188B.Count Pairs
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given a prime number p , n integers a1,a2,…,an , and an integer k .
Find the number of pairs of indexes (i,j) ( 1≤i<j≤n ) for which (ai+aj)(ai2+aj2)≡kmodp .
输入格式
The first line contains integers n,p,k ( 2≤n≤3⋅105 , 2≤p≤109 , 0≤k≤p−1 ). p is guaranteed to be prime.
The second line contains n integers a1,a2,…,an ( 0≤ai≤p−1 ). It is guaranteed that all elements are different.
输出格式
Output a single integer — answer to the problem.
输入输出样例
输入#1
3 3 0 0 1 2
输出#1
1
输入#2
6 7 2 1 2 3 4 5 6
输出#2
3
说明/提示
In the first example:
(0+1)(02+12)=1≡1mod3 .
(0+2)(02+22)=8≡2mod3 .
(1+2)(12+22)=15≡0mod3 .
So only 1 pair satisfies the condition.
In the second example, there are 3 such pairs: (1,5) , (2,3) , (4,6) .