結果

問題 No.2374 ASKT Subsequences
ユーザー ks2mks2m
提出日時 2023-07-07 21:55:03
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 951 bytes
コンパイル時間 2,244 ms
コンパイル使用メモリ 75,692 KB
実行使用メモリ 254,792 KB
最終ジャッジ日時 2024-07-21 17:49:05
合計ジャッジ時間 36,982 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 701 ms
246,852 KB
testcase_01 AC 703 ms
241,556 KB
testcase_02 AC 701 ms
241,732 KB
testcase_03 AC 711 ms
241,280 KB
testcase_04 AC 714 ms
241,424 KB
testcase_05 AC 711 ms
241,820 KB
testcase_06 AC 704 ms
241,556 KB
testcase_07 AC 751 ms
241,336 KB
testcase_08 AC 725 ms
241,508 KB
testcase_09 AC 761 ms
241,520 KB
testcase_10 AC 808 ms
242,492 KB
testcase_11 AC 982 ms
242,536 KB
testcase_12 AC 864 ms
242,276 KB
testcase_13 AC 845 ms
242,396 KB
testcase_14 AC 1,100 ms
242,412 KB
testcase_15 AC 1,213 ms
242,164 KB
testcase_16 AC 1,021 ms
242,412 KB
testcase_17 AC 1,377 ms
242,444 KB
testcase_18 AC 1,747 ms
242,316 KB
testcase_19 AC 1,707 ms
242,732 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 1,961 ms
254,792 KB
testcase_23 AC 1,769 ms
242,424 KB
testcase_24 AC 1,740 ms
242,212 KB
testcase_25 AC 1,018 ms
242,652 KB
testcase_26 TLE -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		String[] sa = br.readLine().split(" ");
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		long[][][] dp = new long[1990][2001][4];
		for (int i = 0; i < n; i++) {
			for (int k = 1; k < 1990; 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 < 1990; i++) {
			for (int j = 0; j < 2001; j++) {
				ans += dp[i][j][3];
			}
		}
		System.out.println(ans);
	}
}
0