結果

問題 No.1096 Range Sums
ユーザー ripityripity
提出日時 2021-12-14 00:11:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 735 ms / 2,000 ms
コード長 395 bytes
コンパイル時間 2,298 ms
コンパイル使用メモリ 74,480 KB
実行使用メモリ 51,720 KB
最終ジャッジ日時 2024-07-23 00:09:38
合計ジャッジ時間 8,369 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,160 KB
testcase_01 AC 127 ms
41,380 KB
testcase_02 AC 113 ms
40,332 KB
testcase_03 AC 127 ms
41,296 KB
testcase_04 AC 135 ms
41,392 KB
testcase_05 AC 125 ms
41,292 KB
testcase_06 AC 118 ms
40,776 KB
testcase_07 AC 127 ms
41,392 KB
testcase_08 AC 130 ms
41,228 KB
testcase_09 AC 124 ms
41,292 KB
testcase_10 AC 735 ms
51,344 KB
testcase_11 AC 728 ms
51,304 KB
testcase_12 AC 668 ms
51,720 KB
testcase_13 AC 683 ms
51,600 KB
testcase_14 AC 618 ms
51,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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