結果
問題 | No.2374 ASKT Subsequences |
ユーザー | kakel-san |
提出日時 | 2023-07-07 22:05:08 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,387 bytes |
コンパイル時間 | 4,473 ms |
コンパイル使用メモリ | 110,368 KB |
実行使用メモリ | 63,604 KB |
最終ジャッジ日時 | 2024-07-21 18:07:36 |
合計ジャッジ時間 | 5,702 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
25,392 KB |
testcase_01 | AC | 31 ms
27,320 KB |
testcase_02 | AC | 31 ms
25,328 KB |
testcase_03 | AC | 31 ms
25,008 KB |
testcase_04 | AC | 33 ms
25,076 KB |
testcase_05 | AC | 30 ms
25,520 KB |
testcase_06 | AC | 31 ms
25,340 KB |
testcase_07 | AC | 32 ms
25,340 KB |
testcase_08 | AC | 31 ms
25,200 KB |
testcase_09 | AC | 32 ms
27,248 KB |
testcase_10 | AC | 35 ms
28,040 KB |
testcase_11 | AC | 44 ms
29,072 KB |
testcase_12 | WA | - |
testcase_13 | AC | 40 ms
26,952 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 59 ms
32,824 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 70 ms
40,844 KB |
testcase_26 | WA | - |
testcase_27 | AC | 114 ms
57,332 KB |
testcase_28 | WA | - |
testcase_29 | AC | 106 ms
59,496 KB |
testcase_30 | AC | 118 ms
63,604 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using static System.Console; using System.Linq; using System.Collections.Generic; class Program { static int NN => int.Parse(ReadLine()); static int[] NList => ReadLine().Split().Select(int.Parse).ToArray(); public static void Main() { Solve(); } static void Solve() { var n = NN; var a = NList; var left = new int[n][]; var right = new int[n][]; for (var i = 0; i < n; ++i) { left[i] = new int[2001]; right[i] = new int[2001]; } left[0][a[0]] = 1; for (var i = 1; i < n; ++i) for (var j = 0; j < left[i].Length; ++j) { left[i][j] = left[i - 1][j]; if (j == a[i]) ++left[i][j]; } right[n - 1][a[n - 1]] = 1; for (var i = n - 2; i >= 0; --i) for (var j = 0; j < right[i].Length; ++j) { right[i][j] = right[i + 1][j]; if (j == a[i]) ++right[i][j]; } var ans = 0L; for (var i = 1; i < n; ++i) for (var j = i + 1; j + 1 < n; ++j) { if (a[i] < a[j]) continue; var a1 = a[j] - 10; var a4 = a[i] + 1; if (a1 < 0 || a4 > 2000) continue; ans += left[i - 1][a1] * right[j + 1][a4]; } WriteLine(ans); } }