結果

問題 No.1096 Range Sums
ユーザー tentententen
提出日時 2020-08-18 13:20:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 726 ms / 2,000 ms
コード長 364 bytes
コンパイル時間 2,146 ms
コンパイル使用メモリ 73,936 KB
実行使用メモリ 51,776 KB
最終ジャッジ日時 2024-10-12 02:38:40
合計ジャッジ時間 8,254 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,124 KB
testcase_01 AC 125 ms
40,976 KB
testcase_02 AC 125 ms
40,784 KB
testcase_03 AC 128 ms
40,956 KB
testcase_04 AC 125 ms
41,296 KB
testcase_05 AC 124 ms
41,068 KB
testcase_06 AC 124 ms
40,852 KB
testcase_07 AC 125 ms
40,816 KB
testcase_08 AC 112 ms
41,260 KB
testcase_09 AC 130 ms
40,988 KB
testcase_10 AC 726 ms
51,752 KB
testcase_11 AC 690 ms
51,776 KB
testcase_12 AC 709 ms
51,096 KB
testcase_13 AC 699 ms
51,632 KB
testcase_14 AC 718 ms
51,068 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();
        long ans = 0;
        for (long i = 0; i < n; i++) {
            ans += (i + 1) * (n - i) * sc.nextInt();
        }
        System.out.println(ans);
    }
}
0