結果

問題 No.1096 Range Sums
ユーザー tentententen
提出日時 2024-07-25 14:43:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 1,268 bytes
コンパイル時間 2,169 ms
コンパイル使用メモリ 78,800 KB
実行使用メモリ 55,944 KB
最終ジャッジ日時 2024-07-25 14:43:51
合計ジャッジ時間 5,259 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,232 KB
testcase_01 AC 50 ms
50,208 KB
testcase_02 AC 50 ms
50,192 KB
testcase_03 AC 50 ms
50,288 KB
testcase_04 AC 50 ms
50,332 KB
testcase_05 AC 49 ms
50,252 KB
testcase_06 AC 51 ms
50,500 KB
testcase_07 AC 51 ms
50,376 KB
testcase_08 AC 49 ms
49,984 KB
testcase_09 AC 48 ms
50,600 KB
testcase_10 AC 211 ms
55,840 KB
testcase_11 AC 209 ms
55,616 KB
testcase_12 AC 206 ms
55,576 KB
testcase_13 AC 211 ms
55,944 KB
testcase_14 AC 188 ms
55,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        long ans = 0;
        for (int i = 1; i <= n; i++) {
            ans += (long)i * (n - i + 1) * sc.nextInt();
        }
        System.out.println(ans);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0