結果

問題 No.1081 和の和
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-06-19 21:37:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 164 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 60,212 KB
最終ジャッジ日時 2024-07-03 14:06:19
合計ジャッジ時間 1,148 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,880 KB
testcase_01 AC 35 ms
51,944 KB
testcase_02 AC 35 ms
52,328 KB
testcase_03 AC 35 ms
53,676 KB
testcase_04 AC 39 ms
59,152 KB
testcase_05 AC 35 ms
51,904 KB
testcase_06 AC 38 ms
52,464 KB
testcase_07 AC 44 ms
60,212 KB
testcase_08 AC 40 ms
59,400 KB
testcase_09 AC 39 ms
59,252 KB
testcase_10 AC 40 ms
60,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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