結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
51,228 KB
testcase_01 AC 110 ms
55,180 KB
testcase_02 AC 109 ms
55,220 KB
testcase_03 AC 111 ms
54,880 KB
testcase_04 AC 123 ms
55,952 KB
testcase_05 AC 110 ms
55,000 KB
testcase_06 AC 113 ms
55,380 KB
testcase_07 AC 151 ms
56,524 KB
testcase_08 AC 137 ms
55,672 KB
testcase_09 AC 146 ms
55,988 KB
testcase_10 AC 201 ms
58,304 KB
testcase_11 AC 315 ms
61,660 KB
testcase_12 AC 269 ms
60,568 KB
testcase_13 AC 241 ms
60,452 KB
testcase_14 AC 463 ms
62,580 KB
testcase_15 AC 354 ms
61,496 KB
testcase_16 AC 318 ms
61,400 KB
testcase_17 AC 397 ms
61,312 KB
testcase_18 AC 710 ms
63,236 KB
testcase_19 AC 672 ms
63,116 KB
testcase_20 AC 720 ms
62,588 KB
testcase_21 AC 772 ms
62,596 KB
testcase_22 AC 785 ms
62,980 KB
testcase_23 AC 635 ms
62,988 KB
testcase_24 AC 679 ms
63,312 KB
testcase_25 WA -
testcase_26 AC 925 ms
62,712 KB
testcase_27 WA -
testcase_28 AC 637 ms
61,744 KB
testcase_29 AC 702 ms
61,376 KB
testcase_30 AC 613 ms
61,616 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, Integer>> 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, 0) + counts.get(j).get(x + add[j]));
                    }
                }
                counts.get(0).put(x, counts.get(0).getOrDefault(x, 0) + 1);
            }
            for (int 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