import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.io.PrintWriter;
import java.io.Writer;
import java.util.InputMismatchException;
class Solution1 {
/**
* @param args
*/
static int n;
static int m;
static int t;
static int arr[];
static long sum[][];
static long b[];
public static void main
(String[] args
) { // TODO Auto-generated method stub
InputReader in
=new InputReader
(System.
in); OutputWriter out
=new OutputWriter
(System.
out); t = in.readInt();
while(t>0){
n=in.readInt();
m=in.readInt();
arr=new int[n];
sum=new long [3][3];
b=new long[3];
for(int i=0;i<n;i++)arr[i]=in.readInt()-1;
long last1[][]=new long[3][3];
for(int i=0;i<n;i++){
long pow1[][]=pow(arr[i]);
long pow2[][]=pow(arr[i]+1 );
long temp1[][]=mul(pow2, last1);
last1=add(pow1,temp1);
sum=add(sum,last1);
}
out.printLine((sum[0][0]+sum[0][1]+sum[0][2])%m);
out.close();
t--;
}
}
static long []mul2(long mm[][]){
long bb[]=new long[3];
bb[0]=mm[0][0]*b[0]+mm[0][1]*b[1]+mm[0][2]*b[2];
bb[1]=mm[1][0]*b[0]+mm[1][1]*b[1]+mm[1][2]*b[2];
bb[2]=mm[2][0]*b[0]+mm[2][1]*b[1]+mm[2][2]*b[2];
bb[0]=bb[0]%m;
bb[1]=bb[1]%m;
bb[1]=bb[1]%m;
return bb;
}
static long[][] pow(int n){
long ans [][]=new long[3][3];
ans[0][0]=1;
ans[0][1]=1;
ans[0][2]=1;
ans[1][0]=1;
ans[1][1]=0;
ans[1][2]=0;
ans[2][0]=0;
ans[2][1]=0;
ans[2][2]=1;
if(n==0){
long ans1[][]=new long[3][3];
ans1[0][0]=1;
ans1[1][1]=1;
ans1[2][2]=1;
return ans1;
}
else{
long ans1[][];
ans1=pow(n/2);
ans1=mul(ans1, ans1);
if(n%2==0){
}
else{
ans1=mul(ans1,ans );
}
return ans1;
}
}
static long [][]add(long m1[][],long [][] m2){
long ans [][]=new long[3][3];
for(int i=0;i<3;i++){
for(int j=0;j<3;j++){
ans[i][j]=m1[i][j]+m2[i][j];
ans[i][j]=ans[i][j]%m;
}
}
return ans;
}
static long [][] mul(long m1[][],long m2[][]){
long ans [][]=new long[3][3];
for(int i=0;i<3;i++){
for(int j=0;j<3;j++){
for(int k=0;k<3;k++){
ans[i][j]=ans[i][j]+m1[i][k]*m2[k][j];
ans[i][j]=ans[i][j]%m;
}
}
}
return ans;
}
}
class InputReader {
private byte[] buf = new byte[1024];
private int curChar;
private int numChars;
private SpaceCharFilter filter;
this.stream = stream;
}
public int read() {
if (numChars == -1)
throw new InputMismatchException();
if (curChar >= numChars) {
curChar = 0;
try {
numChars = stream.read(buf);
throw new InputMismatchException();
}
if (numChars <= 0)
return -1;
}
return buf[curChar++];
}
public int readInt() {
int c = read();
while (isSpaceChar(c))
c = read();
int sgn = 1;
if (c == '-') {
sgn = -1;
c = read();
}
int res = 0;
do {
if (c < '0' || c > '9')
throw new InputMismatchException();
res *= 10;
res += c - '0';
c = read();
} while (!isSpaceChar(c));
return res * sgn;
}
int c = read();
while (isSpaceChar(c))
c = read();
StringBuilder res = new StringBuilder();
do {
res.appendCodePoint(c);
c = read();
} while (!isSpaceChar(c));
return res.toString();
}
public boolean isSpaceChar(int c) {
if (filter != null)
return filter.isSpaceChar(c);
return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1;
}
return readString();
}
public interface SpaceCharFilter {
public boolean isSpaceChar(int ch);
}
}
class OutputWriter {
}
public OutputWriter
(Writer writer
) { }
public void print
(Object...
objects) { for (int i = 0; i < objects.length; i++) {
if (i != 0)
writer.print(' ');
writer.print(objects[i]);
}
}
public void printLine
(Object...
objects) { print(objects);
writer.println();
}
public void close() {
writer.close();
}
public void flush() {
writer.flush();
}
}
class IOUtils {
public static int[] readIntArray(InputReader in, int size) {
int[] array = new int[size];
for (int i = 0; i < size; i++)
array[i] = in.readInt();
return array;
}
}