結果

問題 No.1081 和の和
ユーザー miya145592miya145592
提出日時 2023-05-17 23:08:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 192 bytes
コンパイル時間 1,090 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 59,264 KB
最終ジャッジ日時 2024-12-15 17:11:26
合計ジャッジ時間 1,446 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,108 KB
testcase_01 AC 38 ms
52,272 KB
testcase_02 AC 38 ms
52,804 KB
testcase_03 AC 38 ms
52,824 KB
testcase_04 AC 44 ms
58,736 KB
testcase_05 AC 38 ms
52,128 KB
testcase_06 AC 38 ms
53,620 KB
testcase_07 AC 41 ms
58,900 KB
testcase_08 AC 41 ms
58,856 KB
testcase_09 AC 41 ms
59,264 KB
testcase_10 AC 42 ms
59,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9+7
N = int(input())
A = list(map(int, input().split()))
for _ in range(N-1):
    ans = []
    for i in range(len(A)-1):
        ans.append((A[i]+A[i+1])%MOD)
    A = ans
print(A[0])
0