結果

問題 No.1825 Except One
ユーザー 👑 KazunKazun
提出日時 2022-01-28 21:56:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 285 ms / 3,000 ms
コード長 372 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 74,896 KB
最終ジャッジ日時 2024-06-10 11:17:14
合計ジャッジ時間 4,050 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 36 ms
51,824 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 175 ms
69,760 KB
testcase_04 AC 98 ms
69,760 KB
testcase_05 AC 66 ms
67,328 KB
testcase_06 AC 57 ms
65,664 KB
testcase_07 AC 176 ms
69,248 KB
testcase_08 AC 177 ms
70,144 KB
testcase_09 AC 56 ms
65,408 KB
testcase_10 AC 121 ms
68,608 KB
testcase_11 AC 69 ms
67,456 KB
testcase_12 AC 102 ms
70,016 KB
testcase_13 AC 84 ms
69,632 KB
testcase_14 AC 35 ms
52,096 KB
testcase_15 AC 50 ms
63,232 KB
testcase_16 AC 57 ms
63,360 KB
testcase_17 AC 36 ms
52,480 KB
testcase_18 AC 35 ms
52,480 KB
testcase_19 AC 44 ms
61,312 KB
testcase_20 AC 44 ms
60,544 KB
testcase_21 AC 39 ms
58,112 KB
testcase_22 AC 42 ms
59,136 KB
testcase_23 AC 44 ms
60,160 KB
testcase_24 AC 85 ms
68,864 KB
testcase_25 AC 71 ms
68,224 KB
testcase_26 AC 59 ms
66,560 KB
testcase_27 AC 133 ms
69,504 KB
testcase_28 AC 251 ms
70,784 KB
testcase_29 AC 61 ms
66,816 KB
testcase_30 AC 70 ms
70,656 KB
testcase_31 AC 64 ms
66,560 KB
testcase_32 AC 186 ms
74,896 KB
testcase_33 AC 61 ms
67,200 KB
testcase_34 AC 285 ms
70,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))

A_sum=sum(A)
DP=[[0]*(A_sum+1) for _ in range(N+1)]
DP[0][0]=1

A.sort()
Ans=0
for p,a in enumerate(A,1):
    for n in range(N,0,-1):
        D=DP[n]
        E=DP[n-1]
        for s in range(A_sum,a-1,-1):
            D[s]+=E[s-a]

            if n>=2 and s>=(n-1)*a and s%(n-1)==0:
                Ans+=E[s-a]

print(Ans)
0