結果

問題 No.2374 ASKT Subsequences
ユーザー ks2mks2m
提出日時 2023-07-07 21:51:47
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 816 bytes
コンパイル時間 3,568 ms
コンパイル使用メモリ 76,960 KB
実行使用メモリ 341,424 KB
最終ジャッジ日時 2024-07-21 17:45:30
合計ジャッジ時間 32,951 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 794 ms
262,376 KB
testcase_01 AC 895 ms
255,280 KB
testcase_02 AC 906 ms
255,656 KB
testcase_03 AC 910 ms
255,772 KB
testcase_04 AC 920 ms
255,244 KB
testcase_05 AC 902 ms
255,484 KB
testcase_06 AC 909 ms
255,368 KB
testcase_07 AC 967 ms
257,512 KB
testcase_08 AC 937 ms
255,508 KB
testcase_09 AC 935 ms
255,512 KB
testcase_10 AC 1,034 ms
255,860 KB
testcase_11 AC 1,320 ms
255,908 KB
testcase_12 AC 1,101 ms
256,152 KB
testcase_13 AC 1,086 ms
255,404 KB
testcase_14 AC 1,402 ms
255,384 KB
testcase_15 AC 1,439 ms
255,736 KB
testcase_16 AC 1,244 ms
255,588 KB
testcase_17 AC 1,746 ms
255,916 KB
testcase_18 TLE -
testcase_19 AC 1,810 ms
255,840 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}
		sc.close();

		long[][][] dp = new long[2000][2001][4];
		for (int i = 0; i < n; i++) {
			for (int k = 1; k < 2000; k++) {
				dp[k][a[i]][0]++;
				if (a[i] - k - 10 > 0) {
					dp[k][a[i]][1] += dp[k][a[i] - k - 10][0];
				}
				if (a[i] + k <= 2000) {
					dp[k][a[i]][2] += dp[k][a[i] + k][1];
				}
				if (a[i] - k - 1 > 0) {
					dp[k][a[i]][3] += dp[k][a[i] - k - 1][2];
				}
			}
		}
		long ans = 0;
		for (int i = 0; i < dp.length; i++) {
			for (int j = 0; j < dp[i].length; j++) {
				ans += dp[i][j][3];
			}
		}
		System.out.println(ans);
	}
}
0