結果

問題 No.1081 和の和
ユーザー mlihua09mlihua09
提出日時 2020-08-29 19:01:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 171 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 57,856 KB
最終ジャッジ日時 2024-11-14 17:37:08
合計ジャッジ時間 1,528 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,384 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 41 ms
57,600 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 41 ms
57,600 KB
testcase_08 AC 46 ms
57,856 KB
testcase_09 AC 41 ms
57,728 KB
testcase_10 AC 41 ms
57,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P = 10 ** 9 + 7

N = int(input())

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

for i in range(N - 1):
    
    A = [(A[j] + A[j + 1]) % P for j in range(N - i - 1)]

print(A[0])
0