結果

問題 No.1336 Union on Blackboard
ユーザー shotoyooshotoyoo
提出日時 2021-01-15 21:40:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 609 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 73,216 KB
最終ジャッジ日時 2024-05-04 23:03:26
合計ジャッジ時間 3,256 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 54 ms
66,176 KB
testcase_02 AC 54 ms
65,920 KB
testcase_03 AC 54 ms
66,176 KB
testcase_04 AC 52 ms
65,024 KB
testcase_05 AC 53 ms
65,024 KB
testcase_06 AC 55 ms
66,432 KB
testcase_07 AC 52 ms
64,896 KB
testcase_08 AC 53 ms
65,792 KB
testcase_09 AC 52 ms
65,408 KB
testcase_10 AC 61 ms
72,704 KB
testcase_11 AC 60 ms
72,960 KB
testcase_12 AC 61 ms
72,704 KB
testcase_13 AC 63 ms
72,704 KB
testcase_14 AC 61 ms
72,704 KB
testcase_15 AC 61 ms
72,704 KB
testcase_16 AC 62 ms
72,984 KB
testcase_17 AC 65 ms
72,960 KB
testcase_18 AC 66 ms
72,704 KB
testcase_19 AC 66 ms
73,216 KB
testcase_20 AC 68 ms
72,832 KB
testcase_21 AC 67 ms
72,832 KB
testcase_22 AC 67 ms
72,704 KB
testcase_23 AC 66 ms
72,960 KB
testcase_24 AC 66 ms
72,448 KB
testcase_25 AC 66 ms
72,832 KB
testcase_26 AC 62 ms
72,832 KB
testcase_27 AC 61 ms
72,960 KB
testcase_28 AC 61 ms
72,960 KB
testcase_29 AC 60 ms
73,216 KB
testcase_30 AC 42 ms
57,728 KB
testcase_31 AC 44 ms
58,752 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