結果

問題 No.1096 Range Sums
ユーザー ks2mks2m
提出日時 2020-06-26 21:52:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 249 ms / 2,000 ms
コード長 543 bytes
コンパイル時間 1,862 ms
コンパイル使用メモリ 74,720 KB
実行使用メモリ 66,672 KB
最終ジャッジ日時 2024-07-04 21:43:59
合計ジャッジ時間 4,264 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
49,944 KB
testcase_01 AC 53 ms
49,980 KB
testcase_02 AC 53 ms
49,932 KB
testcase_03 AC 53 ms
50,084 KB
testcase_04 AC 54 ms
50,128 KB
testcase_05 AC 53 ms
49,872 KB
testcase_06 AC 53 ms
50,316 KB
testcase_07 AC 52 ms
49,840 KB
testcase_08 AC 52 ms
50,296 KB
testcase_09 AC 50 ms
50,056 KB
testcase_10 AC 242 ms
65,908 KB
testcase_11 AC 245 ms
66,672 KB
testcase_12 AC 249 ms
56,816 KB
testcase_13 AC 243 ms
56,744 KB
testcase_14 AC 242 ms
56,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		String[] sa = br.readLine().split(" ");
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}
		br.close();

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