結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
58,496 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 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

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