結果

問題 No.754 畳み込みの和
ユーザー tentententen
提出日時 2021-02-09 08:40:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 691 ms / 5,000 ms
コード長 651 bytes
コンパイル時間 1,799 ms
コンパイル使用メモリ 73,984 KB
実行使用メモリ 57,964 KB
最終ジャッジ日時 2024-07-06 14:09:21
合計ジャッジ時間 5,046 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 630 ms
56,520 KB
testcase_01 AC 691 ms
55,480 KB
testcase_02 AC 669 ms
57,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt() + 1;
        int[] as = new int[n];
        long sum = 0;
        for (int i = 0; i < n; i++) {
            as[i] = sc.nextInt();
            sum += as[i];
        }
        sum %= MOD;
        long ans = 0;
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            ans += sum * x % MOD;
            ans %= MOD;
            sum += MOD - as[n - i - 1];
            sum %= MOD;
        }
        System.out.println(ans);
    }
}
0