結果

問題 No.1825 Except One
ユーザー gr1msl3ygr1msl3y
提出日時 2022-01-29 02:36:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 426 ms / 3,000 ms
コード長 492 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 199,756 KB
最終ジャッジ日時 2024-06-10 11:23:41
合計ジャッジ時間 4,718 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,200 KB
testcase_01 AC 32 ms
52,560 KB
testcase_02 AC 33 ms
52,516 KB
testcase_03 AC 226 ms
133,980 KB
testcase_04 AC 102 ms
90,836 KB
testcase_05 AC 75 ms
81,512 KB
testcase_06 AC 52 ms
68,588 KB
testcase_07 AC 214 ms
133,024 KB
testcase_08 AC 214 ms
133,956 KB
testcase_09 AC 51 ms
66,256 KB
testcase_10 AC 172 ms
113,632 KB
testcase_11 AC 74 ms
82,932 KB
testcase_12 AC 109 ms
90,712 KB
testcase_13 AC 86 ms
86,788 KB
testcase_14 AC 35 ms
53,612 KB
testcase_15 AC 48 ms
66,396 KB
testcase_16 AC 51 ms
67,156 KB
testcase_17 AC 36 ms
54,748 KB
testcase_18 AC 34 ms
52,564 KB
testcase_19 AC 45 ms
64,736 KB
testcase_20 AC 42 ms
62,072 KB
testcase_21 AC 39 ms
59,468 KB
testcase_22 AC 40 ms
60,700 KB
testcase_23 AC 45 ms
63,228 KB
testcase_24 AC 87 ms
85,956 KB
testcase_25 AC 62 ms
73,156 KB
testcase_26 AC 50 ms
67,652 KB
testcase_27 AC 178 ms
113,564 KB
testcase_28 AC 367 ms
178,284 KB
testcase_29 AC 53 ms
67,144 KB
testcase_30 AC 64 ms
73,028 KB
testcase_31 AC 63 ms
74,856 KB
testcase_32 AC 262 ms
145,416 KB
testcase_33 AC 53 ms
68,376 KB
testcase_34 AC 426 ms
199,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [[[0]*(N+1) for _ in range(M+1)] for i in range(N+1)]
dp[0][0][0] = 1
ans = 0

for i in range(N):
    a = A[i]
    for j in range(M+1):
        dp[i+1][j][0] = dp[i][j][0]
        for k in range(i+1):
            v = 0
            if j >= a:
                v = dp[i][j-a][k]
                if k and j % k == 0 and a*k <= j:
                    ans += v
            dp[i+1][j][k+1] = dp[i][j][k+1]+v

print(ans)
0