結果

問題 No.1825 Except One
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-03-29 01:11:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 409 ms / 3,000 ms
コード長 586 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 194,176 KB
最終ジャッジ日時 2024-11-07 16:17:09
合計ジャッジ時間 7,321 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,680 KB
testcase_01 AC 72 ms
71,296 KB
testcase_02 AC 78 ms
73,216 KB
testcase_03 AC 409 ms
194,048 KB
testcase_04 AC 224 ms
129,280 KB
testcase_05 AC 132 ms
95,616 KB
testcase_06 AC 82 ms
76,672 KB
testcase_07 AC 376 ms
184,960 KB
testcase_08 AC 379 ms
185,216 KB
testcase_09 AC 80 ms
75,904 KB
testcase_10 AC 298 ms
156,800 KB
testcase_11 AC 158 ms
107,136 KB
testcase_12 AC 229 ms
132,480 KB
testcase_13 AC 173 ms
112,128 KB
testcase_14 AC 68 ms
70,656 KB
testcase_15 AC 82 ms
74,880 KB
testcase_16 AC 78 ms
74,880 KB
testcase_17 AC 71 ms
71,680 KB
testcase_18 AC 69 ms
70,528 KB
testcase_19 AC 75 ms
74,240 KB
testcase_20 AC 76 ms
74,496 KB
testcase_21 AC 70 ms
71,936 KB
testcase_22 AC 72 ms
72,832 KB
testcase_23 AC 72 ms
72,448 KB
testcase_24 AC 151 ms
104,576 KB
testcase_25 AC 172 ms
111,744 KB
testcase_26 AC 89 ms
80,000 KB
testcase_27 AC 343 ms
172,544 KB
testcase_28 AC 405 ms
194,176 KB
testcase_29 AC 90 ms
78,848 KB
testcase_30 AC 93 ms
80,000 KB
testcase_31 AC 127 ms
93,312 KB
testcase_32 AC 391 ms
189,824 KB
testcase_33 AC 87 ms
77,952 KB
testcase_34 AC 403 ms
194,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


n=int(input())
a=[-1]+list(map(int,input().split()))
a.sort()
ans=0

def f(i,j,s):
    return (i*(n+2)+j)*5050+s

dp=[0]*(n+3)**2*5500

dp[f(0,0,0)]=1

for i in range(n):
    for j in range(i+1):
        for s in range(5001):
            dp[f(i+1,j,s)]+=dp[f(i,j,s)]
            dp[f(i+1,j+1,s+a[i+1])]+=dp[f(i,j,s)]

ans=0
for i in range(2,n+1):
    for j in range(2,i+1):
        for s in range(5001):
            if s%(j-1)!=0:continue
            k=s//(j-1)
            if a[i]>k:continue
            if s-a[i]<0:continue
            ans+=dp[f(i-1,j-1,s-a[i])]


print(ans)






0