結果

問題 No.1681 +-*
ユーザー tentententen
提出日時 2021-10-19 08:58:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 271 ms / 2,000 ms
コード長 1,352 bytes
コンパイル時間 2,152 ms
コンパイル使用メモリ 77,252 KB
実行使用メモリ 51,940 KB
最終ジャッジ日時 2024-09-20 06:11:57
合計ジャッジ時間 7,469 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,952 KB
testcase_01 AC 48 ms
36,644 KB
testcase_02 AC 53 ms
37,284 KB
testcase_03 AC 50 ms
37,156 KB
testcase_04 AC 50 ms
36,972 KB
testcase_05 AC 226 ms
48,124 KB
testcase_06 AC 218 ms
47,536 KB
testcase_07 AC 211 ms
48,332 KB
testcase_08 AC 268 ms
51,336 KB
testcase_09 AC 262 ms
51,668 KB
testcase_10 AC 262 ms
51,476 KB
testcase_11 AC 265 ms
51,636 KB
testcase_12 AC 259 ms
51,656 KB
testcase_13 AC 214 ms
46,864 KB
testcase_14 AC 271 ms
51,812 KB
testcase_15 AC 47 ms
36,972 KB
testcase_16 AC 47 ms
36,660 KB
testcase_17 AC 268 ms
51,940 KB
testcase_18 AC 270 ms
51,808 KB
testcase_19 AC 270 ms
51,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        long[] qubes = new long[n + 1];
        qubes[1] = 1;
        for (int i = 2; i <= n; i++) {
            qubes[i] = qubes[i - 1] * 3 % MOD;
        }
        long base = 1;
        long ans = 0;
        for (int i = 0; i < n; i++) {
            base *= sc.nextInt();
            base %= MOD;
            ans += base * ((qubes[n - i] - qubes[n - i - 1] + MOD) % MOD) % MOD;
            ans %= MOD;
        }
        System.out.println(ans);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0