結果

問題 No.1096 Range Sums
ユーザー TententenTententen
提出日時 2020-12-14 12:27:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 701 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 2,108 ms
コンパイル使用メモリ 74,148 KB
実行使用メモリ 63,312 KB
最終ジャッジ日時 2024-09-20 00:40:05
合計ジャッジ時間 7,042 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
54,048 KB
testcase_01 AC 119 ms
53,592 KB
testcase_02 AC 105 ms
52,964 KB
testcase_03 AC 122 ms
53,860 KB
testcase_04 AC 121 ms
53,976 KB
testcase_05 AC 119 ms
53,568 KB
testcase_06 AC 117 ms
54,132 KB
testcase_07 AC 107 ms
52,416 KB
testcase_08 AC 121 ms
53,988 KB
testcase_09 AC 119 ms
54,012 KB
testcase_10 AC 701 ms
62,712 KB
testcase_11 AC 596 ms
63,312 KB
testcase_12 AC 623 ms
62,712 KB
testcase_13 AC 606 ms
62,468 KB
testcase_14 AC 546 ms
62,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] arr = new int[n];
		for (int i = 0; i < n; i++) {
		    arr[i] = sc.nextInt();
		}
		long ans = 0;
		for (int i = 0; i < n; i++) {
		    long left = i + 1;
		    long right = n - i;
		    ans += arr[i] * left * right;
		}
		System.out.println(ans);
	}
}
0