結果

問題 No.1825 Except One
ユーザー hir355hir355
提出日時 2022-01-28 21:45:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 697 ms / 3,000 ms
コード長 511 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 81,996 KB
実行使用メモリ 178,768 KB
最終ジャッジ日時 2024-06-10 11:16:29
合計ジャッジ時間 8,851 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
63,396 KB
testcase_01 AC 51 ms
63,116 KB
testcase_02 AC 61 ms
67,888 KB
testcase_03 AC 697 ms
178,704 KB
testcase_04 AC 260 ms
105,892 KB
testcase_05 AC 125 ms
83,124 KB
testcase_06 AC 66 ms
69,476 KB
testcase_07 AC 623 ms
161,448 KB
testcase_08 AC 623 ms
161,348 KB
testcase_09 AC 66 ms
70,388 KB
testcase_10 AC 424 ms
133,232 KB
testcase_11 AC 158 ms
89,548 KB
testcase_12 AC 281 ms
109,504 KB
testcase_13 AC 182 ms
93,100 KB
testcase_14 AC 42 ms
59,156 KB
testcase_15 AC 66 ms
69,076 KB
testcase_16 AC 66 ms
68,500 KB
testcase_17 AC 51 ms
63,072 KB
testcase_18 AC 43 ms
58,688 KB
testcase_19 AC 63 ms
68,888 KB
testcase_20 AC 63 ms
68,492 KB
testcase_21 AC 50 ms
63,048 KB
testcase_22 AC 62 ms
67,920 KB
testcase_23 AC 61 ms
68,572 KB
testcase_24 AC 153 ms
88,356 KB
testcase_25 AC 180 ms
93,108 KB
testcase_26 AC 84 ms
77,348 KB
testcase_27 AC 525 ms
150,712 KB
testcase_28 AC 686 ms
178,768 KB
testcase_29 AC 71 ms
71,948 KB
testcase_30 AC 87 ms
76,936 KB
testcase_31 AC 114 ms
81,576 KB
testcase_32 AC 662 ms
172,336 KB
testcase_33 AC 73 ms
73,208 KB
testcase_34 AC 694 ms
178,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
a.sort()
M = n * 100
dp = [[[0] * (M + 1) for _ in range(n + 1)] for _ in range(n + 1)]
dp[0][0][0] = 1
ans = 0
for i in range(n):
    for j in range(n + 1):
        for k in range(M + 1):
            if j < n and k + a[i] <= M:
                dp[i + 1][j + 1][k + a[i]] += dp[i][j][k]
                if j >= 1 and (k + a[i]) % j == 0 and a[i] <= (k + a[i]) // j:
                    ans += dp[i][j][k]
            dp[i + 1][j][k] += dp[i][j][k]
print(ans)
0