結果

問題 No.1336 Union on Blackboard
ユーザー convexineqconvexineq
提出日時 2021-01-15 21:26:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 178 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 62,948 KB
最終ジャッジ日時 2024-11-26 13:16:20
合計ジャッジ時間 2,474 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,156 KB
testcase_01 AC 48 ms
60,552 KB
testcase_02 AC 44 ms
61,284 KB
testcase_03 AC 44 ms
60,876 KB
testcase_04 AC 44 ms
61,424 KB
testcase_05 AC 43 ms
60,712 KB
testcase_06 AC 44 ms
61,272 KB
testcase_07 AC 44 ms
60,068 KB
testcase_08 AC 44 ms
59,868 KB
testcase_09 AC 44 ms
61,280 KB
testcase_10 AC 44 ms
61,100 KB
testcase_11 AC 45 ms
61,748 KB
testcase_12 AC 46 ms
61,300 KB
testcase_13 AC 45 ms
62,216 KB
testcase_14 AC 44 ms
61,624 KB
testcase_15 AC 46 ms
62,948 KB
testcase_16 AC 45 ms
60,936 KB
testcase_17 AC 44 ms
60,880 KB
testcase_18 AC 44 ms
61,984 KB
testcase_19 AC 45 ms
61,532 KB
testcase_20 AC 44 ms
62,124 KB
testcase_21 AC 45 ms
62,500 KB
testcase_22 AC 45 ms
62,100 KB
testcase_23 AC 46 ms
62,208 KB
testcase_24 AC 44 ms
61,156 KB
testcase_25 AC 45 ms
61,412 KB
testcase_26 AC 45 ms
62,732 KB
testcase_27 AC 45 ms
61,284 KB
testcase_28 AC 47 ms
61,544 KB
testcase_29 AC 46 ms
62,592 KB
testcase_30 AC 37 ms
53,256 KB
testcase_31 AC 37 ms
52,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
MOD = 10**9+7
for _ in range(T):
    n = int(input())
    *a, = map(int,input().split())
    x = 1
    for ai in a:
        x = x*(ai+1)%MOD
    print((x-1)%MOD)
0