結果

問題 No.1336 Union on Blackboard
ユーザー shotoyooshotoyoo
提出日時 2021-01-15 21:40:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 609 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 74,264 KB
最終ジャッジ日時 2024-11-26 13:40:15
合計ジャッジ時間 3,049 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,892 KB
testcase_01 AC 56 ms
66,692 KB
testcase_02 AC 54 ms
66,640 KB
testcase_03 AC 54 ms
67,260 KB
testcase_04 AC 53 ms
65,468 KB
testcase_05 AC 54 ms
65,192 KB
testcase_06 AC 56 ms
67,056 KB
testcase_07 AC 55 ms
66,456 KB
testcase_08 AC 55 ms
66,704 KB
testcase_09 AC 48 ms
66,196 KB
testcase_10 AC 56 ms
73,024 KB
testcase_11 AC 57 ms
73,224 KB
testcase_12 AC 58 ms
73,032 KB
testcase_13 AC 60 ms
73,472 KB
testcase_14 AC 62 ms
74,152 KB
testcase_15 AC 60 ms
73,344 KB
testcase_16 AC 58 ms
72,532 KB
testcase_17 AC 59 ms
73,976 KB
testcase_18 AC 59 ms
73,196 KB
testcase_19 AC 62 ms
72,992 KB
testcase_20 AC 59 ms
73,396 KB
testcase_21 AC 60 ms
72,932 KB
testcase_22 AC 61 ms
72,988 KB
testcase_23 AC 59 ms
73,820 KB
testcase_24 AC 61 ms
72,784 KB
testcase_25 AC 60 ms
73,204 KB
testcase_26 AC 61 ms
72,604 KB
testcase_27 AC 62 ms
74,264 KB
testcase_28 AC 62 ms
73,720 KB
testcase_29 AC 61 ms
72,992 KB
testcase_30 AC 43 ms
58,092 KB
testcase_31 AC 45 ms
59,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
_print = lambda *x: print(*x, file=sys.stderr)

t = int(input())
M = 10**9+7
def sub(a):
    n = len(a)
    dp = [0]*(n+1)
    dp[0] = 1
    for i in range(n):
        ndp = [0]*(n+1)
        ndp[0] = 1
        for j in range(1,n+1):
            ndp[j] = dp[j-1]*a[i] + dp[j]
            ndp[j] %= M
        dp = ndp
#         print(dp)
    ans = sum(dp[1:])%M
    return ans
for _ in range(t):
    n = int(input())
    a = list(map(int, input().split()))
    print(sub(a))
0