結果

問題 No.2344 (l+r)^2
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-06-19 17:56:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 1,215 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 99,856 KB
最終ジャッジ日時 2024-06-27 06:20:11
合計ジャッジ時間 2,580 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 194 ms
93,584 KB
testcase_02 AC 131 ms
76,344 KB
testcase_03 AC 130 ms
76,512 KB
testcase_04 AC 125 ms
76,492 KB
testcase_05 AC 124 ms
76,964 KB
testcase_06 AC 124 ms
77,056 KB
testcase_07 AC 95 ms
79,488 KB
testcase_08 AC 98 ms
81,340 KB
testcase_09 AC 89 ms
75,960 KB
testcase_10 AC 94 ms
77,440 KB
testcase_11 AC 76 ms
72,320 KB
testcase_12 AC 174 ms
99,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

答えを見た

30段になるまでは、mod2でやってok

"""

import sys
from sys import stdin


def nCr_Plane(n,r):
    if n < r or n < 0:
        return 0
    import math
    return math.factorial(n) // (math.factorial(n-r) * math.factorial(r))
    
def nCr_Lucas(n,r,mod):

    ret = 1
    while n > 0 and r > 0:
        ret = (ret * nCr_Plane(n % mod , r % mod)) % mod
        n //= mod
        r //= mod
    return ret


        
    

TT = int(stdin.readline())
ANS = []

for loop in range(TT):

    N,M = map(int,stdin.readline().split())

    A = list(map(int,stdin.readline().split()))
    FOOT = 32

    if len(A) >= FOOT:

        a_tmp = []

        for slide in range(FOOT):

            #B = A[slide : slide + (N-FOOT+1)]

            #print (B)

            top = 0

            for i in range(N-FOOT+1):
                if A[i+slide] & 1 and (N-FOOT)|i == (N-FOOT):
                    top ^= 1 #(A[i+slide] % 2) * nCr_Lucas(N-FOOT,i,2)

            a_tmp.append(top)

        A = a_tmp

    mod = 2**M

    while len(A) > 1:
        B = []
        for i in range(len(A)-1):
            B.append( (A[i]+A[i+1])**2 % mod )
        A = B

    ANS.append(A[0] % mod)

print (*ANS,sep="\n")
0