結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,144 KB
testcase_01 AC 42 ms
60,824 KB
testcase_02 AC 43 ms
60,548 KB
testcase_03 AC 42 ms
59,856 KB
testcase_04 AC 42 ms
60,252 KB
testcase_05 AC 43 ms
59,812 KB
testcase_06 AC 43 ms
60,124 KB
testcase_07 AC 43 ms
61,336 KB
testcase_08 AC 43 ms
61,376 KB
testcase_09 AC 44 ms
61,028 KB
testcase_10 AC 43 ms
61,964 KB
testcase_11 AC 43 ms
62,172 KB
testcase_12 AC 43 ms
61,544 KB
testcase_13 AC 45 ms
61,276 KB
testcase_14 AC 44 ms
61,360 KB
testcase_15 AC 43 ms
62,364 KB
testcase_16 AC 43 ms
62,112 KB
testcase_17 AC 43 ms
60,976 KB
testcase_18 AC 43 ms
60,636 KB
testcase_19 AC 44 ms
60,692 KB
testcase_20 AC 43 ms
61,088 KB
testcase_21 AC 44 ms
61,560 KB
testcase_22 AC 44 ms
60,892 KB
testcase_23 AC 43 ms
61,496 KB
testcase_24 AC 44 ms
61,560 KB
testcase_25 AC 44 ms
61,244 KB
testcase_26 AC 43 ms
61,468 KB
testcase_27 AC 45 ms
61,804 KB
testcase_28 AC 43 ms
61,956 KB
testcase_29 AC 44 ms
61,724 KB
testcase_30 AC 37 ms
51,752 KB
testcase_31 AC 37 ms
52,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
mod = 10 ** 9 + 7
for _ in range(int(input())):
  N = int(input())
  a = list(map(int, input().split()))
  res = 1
  for x in a:
    res *= x + 1
    res %= mod
  res -= 1
  res %= mod
  print(res)
0