結果
問題 | No.754 畳み込みの和 |
ユーザー | osrgy01 |
提出日時 | 2021-06-12 14:39:20 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 489 ms / 5,000 ms |
コード長 | 208 bytes |
コンパイル時間 | 232 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 24,960 KB |
最終ジャッジ日時 | 2024-05-09 18:13:20 |
合計ジャッジ時間 | 3,233 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 484 ms
24,960 KB |
testcase_01 | AC | 489 ms
24,832 KB |
testcase_02 | AC | 460 ms
24,960 KB |
ソースコード
n=int(input())+1 a=[int(input()) for _ in range(n)] b=[int(input()) for _ in range(n)] res=[0]*n res[0]=a[0] for i in range(1,n): res[i]=res[i-1]+a[i] print(sum(i*j for i,j in zip(res[::-1],b))%(10**9+7))