結果

問題 No.2374 ASKT Subsequences
ユーザー tentententen
提出日時 2023-07-11 15:21:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 942 ms / 2,000 ms
コード長 2,393 bytes
コンパイル時間 3,033 ms
コンパイル使用メモリ 85,160 KB
実行使用メモリ 63,160 KB
最終ジャッジ日時 2024-09-13 05:39:38
合計ジャッジ時間 17,222 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
51,336 KB
testcase_01 AC 104 ms
55,160 KB
testcase_02 AC 112 ms
54,772 KB
testcase_03 AC 106 ms
54,852 KB
testcase_04 AC 126 ms
55,436 KB
testcase_05 AC 112 ms
54,664 KB
testcase_06 AC 115 ms
54,816 KB
testcase_07 AC 155 ms
55,488 KB
testcase_08 AC 141 ms
55,252 KB
testcase_09 AC 152 ms
55,640 KB
testcase_10 AC 202 ms
58,168 KB
testcase_11 AC 401 ms
61,708 KB
testcase_12 AC 268 ms
60,624 KB
testcase_13 AC 263 ms
60,292 KB
testcase_14 AC 479 ms
61,900 KB
testcase_15 AC 358 ms
61,428 KB
testcase_16 AC 444 ms
62,656 KB
testcase_17 AC 402 ms
61,228 KB
testcase_18 AC 706 ms
62,768 KB
testcase_19 AC 605 ms
62,384 KB
testcase_20 AC 865 ms
63,144 KB
testcase_21 AC 896 ms
63,088 KB
testcase_22 AC 730 ms
62,808 KB
testcase_23 AC 682 ms
62,272 KB
testcase_24 AC 688 ms
63,160 KB
testcase_25 AC 333 ms
58,044 KB
testcase_26 AC 942 ms
62,960 KB
testcase_27 AC 510 ms
59,328 KB
testcase_28 AC 674 ms
62,076 KB
testcase_29 AC 740 ms
61,312 KB
testcase_30 AC 624 ms
61,768 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[] values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        long ans = 0;
        for (int i = 1; i <= 2000; i++) {
            int[] add = new int[]{-i - 10, i, -i - 1};
            ArrayList<HashMap<Integer, Long>> counts = new ArrayList<>();
            for (int j = 0; j < 4; j++) {
                counts.add(new HashMap<>());
            }
            for (int x : values) {
                for (int j = 2; j >= 0; j--) {
                    if (counts.get(j).containsKey(x + add[j])) {
                        counts.get(j + 1).put(x, counts.get(j + 1).getOrDefault(x, 0L) + counts.get(j).get(x + add[j]));
                    }
                }
                counts.get(0).put(x, counts.get(0).getOrDefault(x, 0L) + 1);
            }
            for (long x : counts.get(3).values()) {
                ans += x;
            }
        }
        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