結果

問題 No.1525 Meximum Sum
ユーザー tentententen
提出日時 2023-03-24 18:17:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 2,029 bytes
コンパイル時間 2,481 ms
コンパイル使用メモリ 89,268 KB
実行使用メモリ 47,648 KB
最終ジャッジ日時 2024-09-18 16:32:31
合計ジャッジ時間 10,102 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,028 KB
testcase_01 AC 53 ms
37,100 KB
testcase_02 AC 53 ms
37,060 KB
testcase_03 AC 54 ms
37,024 KB
testcase_04 AC 52 ms
37,132 KB
testcase_05 AC 53 ms
36,996 KB
testcase_06 AC 51 ms
36,760 KB
testcase_07 AC 52 ms
37,268 KB
testcase_08 AC 215 ms
45,100 KB
testcase_09 AC 249 ms
47,164 KB
testcase_10 AC 163 ms
44,556 KB
testcase_11 AC 183 ms
43,872 KB
testcase_12 AC 243 ms
46,604 KB
testcase_13 AC 284 ms
47,516 KB
testcase_14 AC 273 ms
47,360 KB
testcase_15 AC 265 ms
47,152 KB
testcase_16 AC 270 ms
47,420 KB
testcase_17 AC 262 ms
47,124 KB
testcase_18 AC 261 ms
47,240 KB
testcase_19 AC 277 ms
47,440 KB
testcase_20 AC 265 ms
47,400 KB
testcase_21 AC 274 ms
47,632 KB
testcase_22 AC 266 ms
47,112 KB
testcase_23 AC 262 ms
47,244 KB
testcase_24 AC 270 ms
47,648 KB
testcase_25 AC 271 ms
47,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] positions = new int[n + 1];
        for (int i = 0; i < n; i++) {
            positions[sc.nextInt()] = i;
        }
        int left = positions[0];
        int right = positions[0];
        long ans = 0;
        long all = n * (n - 1L) / 2;
        for (int i = 0; i < n; i++) {
            long current = (left + 1L) * (n - right);
            ans += (all - current) * i;
            all = current;
            left = Math.min(left, positions[i + 1]);
            right = Math.max(right, positions[i + 1]);
        }
        ans += n;
        System.out.println(ans);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0