結果

問題 No.1687 What the Heck?
ユーザー merlinmerlin
提出日時 2021-09-24 21:38:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 820 bytes
コンパイル時間 2,136 ms
コンパイル使用メモリ 75,828 KB
実行使用メモリ 76,156 KB
最終ジャッジ日時 2024-07-05 10:13:56
合計ジャッジ時間 9,997 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,692 KB
testcase_01 AC 50 ms
36,732 KB
testcase_02 WA -
testcase_03 AC 52 ms
36,456 KB
testcase_04 AC 51 ms
36,808 KB
testcase_05 AC 51 ms
36,808 KB
testcase_06 AC 50 ms
36,880 KB
testcase_07 AC 379 ms
52,112 KB
testcase_08 AC 487 ms
58,464 KB
testcase_09 WA -
testcase_10 AC 299 ms
49,372 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 708 ms
74,428 KB
testcase_14 AC 705 ms
75,700 KB
testcase_15 AC 708 ms
75,548 KB
testcase_16 AC 730 ms
74,860 KB
testcase_17 AC 174 ms
42,504 KB
testcase_18 AC 700 ms
75,440 KB
testcase_19 AC 97 ms
39,872 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[]=new int[n],b,i; long ans=0;
        String s[]=bu.readLine().split(" ");
        TreeSet<Integer> ts=new TreeSet<>();
        for(i=0;i<n;i++)
        {
            a[i]=Integer.parseInt(s[i]);
            ts.add(i+1);
        }

        for(i=n-1;i>=0;i--)
        if(ts.higher(a[i])!=null)
        {
            int del=ts.higher(a[i]);
            ts.remove(del);
            ans+=i+1;
        }
        else if(ts.contains(a[i])) ts.remove(a[i]);
        else ans-=i+1;
        System.out.println(ans);
    }
}
0