結果

問題 No.1336 Union on Blackboard
ユーザー 👑 KazunKazun
提出日時 2021-01-15 21:34:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 63,480 KB
最終ジャッジ日時 2024-05-04 22:51:15
合計ジャッジ時間 2,465 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,464 KB
testcase_01 AC 44 ms
61,188 KB
testcase_02 AC 47 ms
62,012 KB
testcase_03 AC 48 ms
62,584 KB
testcase_04 AC 52 ms
61,492 KB
testcase_05 AC 48 ms
61,744 KB
testcase_06 AC 43 ms
61,640 KB
testcase_07 AC 41 ms
61,176 KB
testcase_08 AC 42 ms
61,052 KB
testcase_09 AC 41 ms
61,356 KB
testcase_10 AC 43 ms
62,940 KB
testcase_11 AC 40 ms
62,136 KB
testcase_12 AC 44 ms
63,004 KB
testcase_13 AC 46 ms
61,872 KB
testcase_14 AC 45 ms
61,748 KB
testcase_15 AC 43 ms
62,788 KB
testcase_16 AC 44 ms
63,012 KB
testcase_17 AC 43 ms
62,736 KB
testcase_18 AC 43 ms
62,208 KB
testcase_19 AC 44 ms
62,980 KB
testcase_20 AC 44 ms
62,008 KB
testcase_21 AC 41 ms
61,960 KB
testcase_22 AC 41 ms
63,300 KB
testcase_23 AC 41 ms
62,672 KB
testcase_24 AC 42 ms
63,480 KB
testcase_25 AC 42 ms
62,432 KB
testcase_26 AC 47 ms
62,084 KB
testcase_27 AC 47 ms
62,628 KB
testcase_28 AC 46 ms
61,972 KB
testcase_29 AC 47 ms
62,372 KB
testcase_30 AC 35 ms
52,064 KB
testcase_31 AC 36 ms
52,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())

Mod=10**9+7

for _ in range(T):
    N=int(input())
    A=list(map(int,input().split()))

    B=[a+1 for a in A]

    prod=1
    for b in B:
        prod*=b
        prod%=Mod

    prod-=1
    prod%=Mod
    print(prod)
0