結果
問題 | No.754 畳み込みの和 |
ユーザー | osrgy01 |
提出日時 | 2021-06-12 14:39:20 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 523 ms / 5,000 ms |
コード長 | 208 bytes |
コンパイル時間 | 305 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 24,960 KB |
最終ジャッジ日時 | 2024-12-16 09:33:31 |
合計ジャッジ時間 | 3,372 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 523 ms
24,832 KB |
testcase_01 | AC | 512 ms
24,960 KB |
testcase_02 | AC | 514 ms
24,832 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))