結果

問題 No.1687 What the Heck?
ユーザー tentententen
提出日時 2021-10-11 10:13:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 1,125 bytes
コンパイル時間 2,046 ms
コンパイル使用メモリ 76,800 KB
実行使用メモリ 47,080 KB
最終ジャッジ日時 2024-09-15 07:44:39
合計ジャッジ時間 6,413 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,544 KB
testcase_01 AC 50 ms
36,484 KB
testcase_02 AC 51 ms
36,592 KB
testcase_03 AC 48 ms
37,016 KB
testcase_04 AC 51 ms
37,112 KB
testcase_05 AC 50 ms
36,920 KB
testcase_06 AC 50 ms
37,032 KB
testcase_07 AC 172 ms
43,540 KB
testcase_08 AC 189 ms
44,364 KB
testcase_09 AC 167 ms
43,264 KB
testcase_10 AC 156 ms
43,468 KB
testcase_11 AC 164 ms
43,600 KB
testcase_12 AC 247 ms
46,764 KB
testcase_13 AC 249 ms
47,072 KB
testcase_14 AC 263 ms
46,808 KB
testcase_15 AC 244 ms
47,080 KB
testcase_16 AC 240 ms
46,784 KB
testcase_17 AC 103 ms
39,440 KB
testcase_18 AC 242 ms
46,624 KB
testcase_19 AC 62 ms
37,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] arr = new int[n + 1];
        for (int i = 0; i < n; i++) {
            arr[sc.nextInt()] = i + 1;
        }
        long ans = 0;
        long total = n * (n + 1L) / 2;
        for (int i = n; i >= 1; i--) {
            ans = Math.max(ans, total - arr[i] * 2);
            total -= arr[i];
        }
        System.out.println(ans);
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0