結果

問題 No.1336 Union on Blackboard
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-01-15 22:07:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 63,076 KB
最終ジャッジ日時 2024-11-26 14:59:49
合計ジャッジ時間 2,571 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,244 KB
testcase_01 AC 43 ms
60,652 KB
testcase_02 AC 44 ms
62,444 KB
testcase_03 AC 44 ms
61,204 KB
testcase_04 AC 45 ms
61,052 KB
testcase_05 AC 44 ms
61,500 KB
testcase_06 AC 46 ms
61,852 KB
testcase_07 AC 46 ms
60,540 KB
testcase_08 AC 46 ms
61,164 KB
testcase_09 AC 46 ms
60,992 KB
testcase_10 AC 46 ms
62,276 KB
testcase_11 AC 47 ms
62,704 KB
testcase_12 AC 46 ms
61,552 KB
testcase_13 AC 47 ms
62,372 KB
testcase_14 AC 47 ms
61,456 KB
testcase_15 AC 44 ms
62,280 KB
testcase_16 AC 44 ms
61,368 KB
testcase_17 AC 45 ms
62,420 KB
testcase_18 AC 46 ms
62,372 KB
testcase_19 AC 45 ms
62,288 KB
testcase_20 AC 44 ms
61,288 KB
testcase_21 AC 43 ms
61,744 KB
testcase_22 AC 48 ms
61,848 KB
testcase_23 AC 47 ms
61,976 KB
testcase_24 AC 46 ms
61,976 KB
testcase_25 AC 46 ms
61,824 KB
testcase_26 AC 46 ms
62,224 KB
testcase_27 AC 46 ms
61,916 KB
testcase_28 AC 47 ms
63,076 KB
testcase_29 AC 47 ms
61,664 KB
testcase_30 AC 36 ms
52,188 KB
testcase_31 AC 38 ms
53,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):
    n = int(input())
    a = list(map(int, input().split()))
    cur = a[0]
    for i in range(1, n):
        cur = cur + a[i] + cur * a[i]
        cur %= (10 ** 9 + 7)
    print(cur)
0