結果

問題 No.1687 What the Heck?
ユーザー merlinmerlin
提出日時 2021-09-24 21:51:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 665 bytes
コンパイル時間 2,480 ms
コンパイル使用メモリ 74,164 KB
実行使用メモリ 55,912 KB
最終ジャッジ日時 2024-07-05 10:26:49
合計ジャッジ時間 5,773 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
37,104 KB
testcase_01 AC 41 ms
36,968 KB
testcase_02 AC 42 ms
36,568 KB
testcase_03 AC 42 ms
37,036 KB
testcase_04 AC 45 ms
36,900 KB
testcase_05 AC 45 ms
36,632 KB
testcase_06 AC 45 ms
36,924 KB
testcase_07 AC 165 ms
46,208 KB
testcase_08 AC 190 ms
49,116 KB
testcase_09 AC 146 ms
45,240 KB
testcase_10 AC 134 ms
44,888 KB
testcase_11 AC 135 ms
44,812 KB
testcase_12 AC 258 ms
54,636 KB
testcase_13 AC 251 ms
54,504 KB
testcase_14 AC 283 ms
55,912 KB
testcase_15 AC 248 ms
54,576 KB
testcase_16 AC 237 ms
54,488 KB
testcase_17 AC 93 ms
40,148 KB
testcase_18 AC 246 ms
54,200 KB
testcase_19 AC 48 ms
36,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        int n=Integer.parseInt(bu.readLine());
        int a,i,pos[]=new int[n+1];

        String s[]=bu.readLine().split(" ");
        for(i=0;i<n;i++)
        {
            a=Integer.parseInt(s[i]);
            pos[a]=i+1;
        }

        long ans=0,pre=pos[1];
        for(i=2;i<=n;i++)
        {
            ans=Math.max(ans,pre-pos[i]);
            pre+=pos[i];
        }

        System.out.println(ans);
    }
}
0