結果

問題 No.1081 和の和
ユーザー netyo715netyo715
提出日時 2022-08-04 00:21:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 173 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 81,916 KB
実行使用メモリ 59,456 KB
最終ジャッジ日時 2024-09-13 18:48:09
合計ジャッジ時間 1,971 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,452 KB
testcase_01 AC 37 ms
52,584 KB
testcase_02 AC 38 ms
51,852 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 42 ms
58,680 KB
testcase_05 AC 38 ms
52,240 KB
testcase_06 AC 39 ms
52,136 KB
testcase_07 AC 41 ms
58,224 KB
testcase_08 AC 41 ms
58,372 KB
testcase_09 AC 41 ms
58,824 KB
testcase_10 AC 41 ms
59,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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