結果

問題 No.1081 和の和
ユーザー TnaTna
提出日時 2022-07-27 09:22:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 599 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,440 KB
最終ジャッジ日時 2024-07-16 17:15:37
合計ジャッジ時間 9,652 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 581 ms
44,440 KB
testcase_01 AC 563 ms
43,920 KB
testcase_02 AC 581 ms
44,176 KB
testcase_03 AC 595 ms
43,788 KB
testcase_04 AC 582 ms
43,916 KB
testcase_05 AC 579 ms
44,308 KB
testcase_06 AC 591 ms
44,176 KB
testcase_07 AC 599 ms
44,172 KB
testcase_08 AC 576 ms
44,052 KB
testcase_09 AC 584 ms
44,288 KB
testcase_10 AC 574 ms
44,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N = int(input())
data = [int(x) for x in input().split()]
for i in range(N-1):
    data = [data[i-1] + data[i] for i in range(1, len(data))]
#     print(data)
# print(data)
print(data[0]%((10**9)+7))
0