結果

問題 No.1681 +-*
ユーザー ks2mks2m
提出日時 2021-09-17 21:38:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 757 ms / 2,000 ms
コード長 654 bytes
コンパイル時間 2,009 ms
コンパイル使用メモリ 74,344 KB
実行使用メモリ 69,208 KB
最終ジャッジ日時 2024-06-29 20:01:59
合計ジャッジ時間 12,777 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
52,728 KB
testcase_01 AC 110 ms
53,824 KB
testcase_02 AC 160 ms
54,196 KB
testcase_03 AC 170 ms
54,576 KB
testcase_04 AC 151 ms
54,504 KB
testcase_05 AC 633 ms
63,584 KB
testcase_06 AC 681 ms
63,108 KB
testcase_07 AC 625 ms
63,536 KB
testcase_08 AC 754 ms
67,260 KB
testcase_09 AC 736 ms
67,160 KB
testcase_10 AC 720 ms
69,208 KB
testcase_11 AC 689 ms
68,212 KB
testcase_12 AC 757 ms
67,352 KB
testcase_13 AC 571 ms
59,324 KB
testcase_14 AC 723 ms
68,424 KB
testcase_15 AC 106 ms
53,116 KB
testcase_16 AC 117 ms
52,664 KB
testcase_17 AC 734 ms
67,264 KB
testcase_18 AC 747 ms
68,168 KB
testcase_19 AC 633 ms
68,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}
		sc.close();

		int mod = 1000000007;
		long[] p3 = new long[n];
		p3[0] = 1;
		for (int i = 1; i < n; i++) {
			p3[i] = p3[i - 1] * 3;
			p3[i] %= mod;
		}

		long ans = 0;
		long b = 1;
		for (int i = 0; i < n - 1; i++) {
			b *= a[i];
			b %= mod;
			long val = b * p3[n - 2 - i] * 2 % mod;
			ans += val;
		}
		b *= a[n - 1];
		b %= mod;
		ans += b;
		ans %= mod;
		System.out.println(ans);
	}
}
0