結果

問題 No.2344 (l+r)^2
ユーザー keisuke6keisuke6
提出日時 2023-06-07 22:15:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 532 ms / 2,000 ms
コード長 751 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 101,888 KB
最終ジャッジ日時 2024-06-09 14:02:00
合計ジャッジ時間 2,599 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,004 KB
testcase_01 AC 532 ms
77,436 KB
testcase_02 AC 150 ms
77,136 KB
testcase_03 AC 141 ms
77,416 KB
testcase_04 AC 141 ms
77,736 KB
testcase_05 AC 135 ms
77,460 KB
testcase_06 AC 140 ms
77,388 KB
testcase_07 AC 57 ms
79,576 KB
testcase_08 AC 59 ms
83,092 KB
testcase_09 AC 51 ms
76,428 KB
testcase_10 AC 58 ms
79,076 KB
testcase_11 AC 53 ms
73,160 KB
testcase_12 AC 100 ms
101,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    N, M = map(int, input().split())
    A = list(map(int, input().split()))
    
    if N <= 2 * M:
        B = list(A)
        while len(B) != 1:
            C = []
            for i in range(1, len(B)):
                C.append((B[i] + B[i-1]) * (B[i-1] + B[i]) % (1 << M))
            B = C
        print(B[0])
        continue
    
    C = [0] * M
    for i in range(M):
        for j in range(i, N - M + i + 1):
            if (N - M) & (j - i) == j - i and A[j] % 2:
                C[i] = (C[i] + 1) % 2
    
    D = list(C)
    for i in range(2, M + 1):
        E = []
        for j in range(1, len(D)):
            E.append((D[j-1] + D[j]) * (D[j-1] + D[j]) % (1 << i))
        D = E
    
    print(D[0])
0