結果

問題 No.1336 Union on Blackboard
ユーザー ntudantuda
提出日時 2024-11-22 22:07:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 189 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 62,544 KB
最終ジャッジ日時 2024-11-22 22:07:05
合計ジャッジ時間 3,014 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,100 KB
testcase_01 AC 47 ms
61,112 KB
testcase_02 AC 47 ms
60,428 KB
testcase_03 AC 48 ms
60,972 KB
testcase_04 AC 47 ms
61,668 KB
testcase_05 AC 48 ms
61,444 KB
testcase_06 AC 48 ms
61,624 KB
testcase_07 AC 48 ms
61,736 KB
testcase_08 AC 48 ms
60,108 KB
testcase_09 AC 48 ms
61,140 KB
testcase_10 AC 49 ms
60,960 KB
testcase_11 AC 49 ms
62,420 KB
testcase_12 AC 49 ms
61,144 KB
testcase_13 AC 47 ms
62,344 KB
testcase_14 AC 49 ms
61,452 KB
testcase_15 AC 48 ms
62,316 KB
testcase_16 AC 47 ms
62,520 KB
testcase_17 AC 48 ms
62,348 KB
testcase_18 AC 48 ms
61,524 KB
testcase_19 AC 49 ms
60,684 KB
testcase_20 AC 49 ms
61,176 KB
testcase_21 AC 49 ms
61,204 KB
testcase_22 AC 50 ms
62,544 KB
testcase_23 AC 49 ms
60,872 KB
testcase_24 AC 49 ms
62,364 KB
testcase_25 AC 47 ms
61,600 KB
testcase_26 AC 70 ms
61,300 KB
testcase_27 AC 48 ms
61,140 KB
testcase_28 AC 48 ms
61,792 KB
testcase_29 AC 49 ms
60,700 KB
testcase_30 AC 39 ms
52,348 KB
testcase_31 AC 39 ms
52,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
for _ in range(int(input())):
    N = int(input())
    A = list(map(int,input().split()))
    b = 0
    for a in A:
        b = b + a + b * a
        b %= MOD
    print(b)
0