結果

問題 No.1081 和の和
ユーザー TomoyarnTomoyarn
提出日時 2022-02-09 05:17:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 221 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 60,508 KB
最終ジャッジ日時 2024-06-24 01:34:11
合計ジャッジ時間 1,289 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,116 KB
testcase_01 AC 36 ms
53,060 KB
testcase_02 AC 39 ms
51,884 KB
testcase_03 AC 38 ms
52,484 KB
testcase_04 AC 42 ms
58,920 KB
testcase_05 AC 36 ms
52,684 KB
testcase_06 AC 38 ms
53,688 KB
testcase_07 AC 41 ms
58,584 KB
testcase_08 AC 43 ms
60,508 KB
testcase_09 AC 42 ms
59,036 KB
testcase_10 AC 47 ms
59,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def yukicoder1081(N, A):
    for i in range(N - 1, 0, -1):
        for j in range(i):
            A[j] = A[j] + A[j + 1]
    return A[0] % (10 ** 9 + 7)

N, *A = map(int, open(0).read().split())
print(yukicoder1081(N, A))
0