結果

問題 No.1081 和の和
ユーザー H3PO4H3PO4
提出日時 2020-06-19 21:22:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 507 ms / 2,000 ms
コード長 189 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,432 KB
最終ジャッジ日時 2024-07-03 13:37:01
合計ジャッジ時間 6,555 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 505 ms
44,428 KB
testcase_01 AC 507 ms
44,304 KB
testcase_02 AC 507 ms
43,932 KB
testcase_03 AC 498 ms
44,296 KB
testcase_04 AC 500 ms
44,032 KB
testcase_05 AC 495 ms
44,300 KB
testcase_06 AC 494 ms
44,172 KB
testcase_07 AC 491 ms
44,048 KB
testcase_08 AC 490 ms
44,184 KB
testcase_09 AC 493 ms
44,432 KB
testcase_10 AC 486 ms
44,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

MOD = 10 ** 9 + 7

N = int(input())
A = np.array(list(map(int, input().split())), dtype=np.int64)
for _ in range(N - 1):
    A = A[:-1] + A[1:]
    A %= MOD
print(A[0])
0