結果

問題 No.1336 Union on Blackboard
ユーザー flippergoflippergo
提出日時 2025-01-01 19:47:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 200 bytes
コンパイル時間 2,759 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 62,568 KB
最終ジャッジ日時 2025-01-01 19:48:01
合計ジャッジ時間 4,690 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
52,096 KB
testcase_01 AC 38 ms
61,868 KB
testcase_02 AC 38 ms
61,800 KB
testcase_03 AC 37 ms
60,612 KB
testcase_04 AC 38 ms
60,888 KB
testcase_05 AC 37 ms
61,204 KB
testcase_06 AC 37 ms
61,736 KB
testcase_07 AC 38 ms
61,872 KB
testcase_08 AC 44 ms
61,088 KB
testcase_09 AC 37 ms
60,728 KB
testcase_10 AC 40 ms
61,452 KB
testcase_11 AC 40 ms
62,100 KB
testcase_12 AC 38 ms
61,364 KB
testcase_13 AC 37 ms
61,568 KB
testcase_14 AC 38 ms
62,404 KB
testcase_15 AC 37 ms
61,828 KB
testcase_16 AC 37 ms
62,568 KB
testcase_17 AC 37 ms
61,924 KB
testcase_18 AC 36 ms
61,632 KB
testcase_19 AC 37 ms
61,492 KB
testcase_20 AC 38 ms
61,872 KB
testcase_21 AC 36 ms
61,768 KB
testcase_22 AC 38 ms
61,300 KB
testcase_23 AC 37 ms
62,164 KB
testcase_24 AC 36 ms
62,028 KB
testcase_25 AC 38 ms
62,016 KB
testcase_26 AC 39 ms
61,700 KB
testcase_27 AC 38 ms
61,180 KB
testcase_28 AC 38 ms
61,572 KB
testcase_29 AC 38 ms
61,748 KB
testcase_30 AC 29 ms
52,772 KB
testcase_31 AC 36 ms
52,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9+7
T = int(input())
for _ in range(T):
    N = int(input())
    A = list(map(int,input().split()))
    ans = 1
    for i in range(N):
        ans = (ans*(1+A[i]))%MOD
    print((ans-1)%MOD)
0