結果

問題 No.1081 和の和
ユーザー brthyyjpbrthyyjp
提出日時 2020-06-24 21:18:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 61,812 KB
最終ジャッジ日時 2024-07-03 20:20:59
合計ジャッジ時間 1,229 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,932 KB
testcase_01 AC 40 ms
53,932 KB
testcase_02 AC 46 ms
54,860 KB
testcase_03 AC 39 ms
53,388 KB
testcase_04 AC 45 ms
60,276 KB
testcase_05 AC 40 ms
53,568 KB
testcase_06 AC 40 ms
54,912 KB
testcase_07 AC 44 ms
60,380 KB
testcase_08 AC 44 ms
61,812 KB
testcase_09 AC 45 ms
60,308 KB
testcase_10 AC 45 ms
60,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))

mod = 10**9+7

import copy
for i in range(1, n):
    A_ = copy.copy(A)
    for j in range(n-i):
        A_[j] = A[j]+A[j+1]
        A_[j] %= mod
    A = copy.copy(A_)
print(A[0]%mod)
0