結果

問題 No.1336 Union on Blackboard
ユーザー nephrologistnephrologist
提出日時 2021-01-15 21:41:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 532 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 266,812 KB
最終ジャッジ日時 2024-11-26 13:44:01
合計ジャッジ時間 74,891 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
61,392 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline
mod = 10 ** 9 + 7

t = int(input())

from collections import defaultdict

for _ in range(t):
    n = int(input())
    A = list(map(int, input().split()))
    pre = defaultdict(int)
    pre[0] = 1
    for a in A:
        nx = defaultdict(int)
        for num in pre.keys():
            cnt = pre[num]
            nx[num] = cnt
            nx[(num + a) % mod] = cnt
        pre = nx
    ans = 0
    for key, val in pre.items():
        ans += key * val
        ans %= mod
    print(ans)

0