結果

問題 No.2374 ASKT Subsequences
ユーザー timitimi
提出日時 2024-02-13 22:00:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 76,756 KB
最終ジャッジ日時 2024-09-28 18:39:17
合計ジャッジ時間 3,635 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,888 KB
testcase_01 AC 33 ms
57,600 KB
testcase_02 AC 31 ms
53,020 KB
testcase_03 AC 36 ms
58,760 KB
testcase_04 AC 37 ms
60,264 KB
testcase_05 AC 34 ms
58,348 KB
testcase_06 AC 35 ms
59,468 KB
testcase_07 AC 65 ms
75,816 KB
testcase_08 AC 58 ms
75,988 KB
testcase_09 AC 62 ms
76,072 KB
testcase_10 AC 71 ms
75,952 KB
testcase_11 AC 63 ms
76,052 KB
testcase_12 AC 59 ms
75,832 KB
testcase_13 AC 61 ms
76,308 KB
testcase_14 AC 59 ms
76,064 KB
testcase_15 AC 61 ms
75,828 KB
testcase_16 AC 61 ms
76,108 KB
testcase_17 AC 73 ms
76,056 KB
testcase_18 AC 81 ms
76,008 KB
testcase_19 AC 78 ms
76,392 KB
testcase_20 AC 133 ms
76,580 KB
testcase_21 AC 143 ms
76,704 KB
testcase_22 AC 125 ms
76,424 KB
testcase_23 AC 84 ms
76,120 KB
testcase_24 AC 84 ms
76,572 KB
testcase_25 AC 53 ms
67,168 KB
testcase_26 AC 164 ms
76,468 KB
testcase_27 AC 174 ms
76,408 KB
testcase_28 AC 55 ms
67,672 KB
testcase_29 AC 176 ms
76,756 KB
testcase_30 AC 93 ms
76,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int, input().split()))
aa=max(A)+10;ans=0
for k in range(1,max(A)+1):
  dp1=[0]*aa;dp2=[0]*aa;dp3=[0]*aa;dp4=[0]*aa
  x,y,z=k+1,-k,k+10
  for a in A:
    if aa>a-x>0:
      dp4[a]+=dp3[a-x]
    if aa>a-y>0:
      dp3[a]+=dp2[a-y]
    if aa>a-z>0:
      dp2[a]+=dp1[a-z]
    dp1[a]+=1 
  ans+=sum(dp4)
print(ans)
0