結果

問題 No.1825 Except One
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-01-29 10:11:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 163 ms / 3,000 ms
コード長 468 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 97,424 KB
最終ジャッジ日時 2024-06-10 11:24:05
合計ジャッジ時間 3,832 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
57,792 KB
testcase_01 AC 45 ms
59,984 KB
testcase_02 AC 43 ms
58,932 KB
testcase_03 AC 163 ms
97,168 KB
testcase_04 AC 86 ms
78,100 KB
testcase_05 AC 63 ms
71,040 KB
testcase_06 AC 44 ms
60,620 KB
testcase_07 AC 147 ms
91,632 KB
testcase_08 AC 146 ms
92,380 KB
testcase_09 AC 43 ms
60,064 KB
testcase_10 AC 115 ms
85,356 KB
testcase_11 AC 71 ms
77,208 KB
testcase_12 AC 89 ms
79,756 KB
testcase_13 AC 71 ms
77,332 KB
testcase_14 AC 41 ms
59,176 KB
testcase_15 AC 42 ms
58,568 KB
testcase_16 AC 44 ms
59,480 KB
testcase_17 AC 41 ms
58,732 KB
testcase_18 AC 44 ms
58,408 KB
testcase_19 AC 43 ms
58,716 KB
testcase_20 AC 42 ms
59,776 KB
testcase_21 AC 41 ms
58,712 KB
testcase_22 AC 42 ms
59,116 KB
testcase_23 AC 43 ms
59,336 KB
testcase_24 AC 58 ms
74,064 KB
testcase_25 AC 69 ms
77,352 KB
testcase_26 AC 46 ms
61,188 KB
testcase_27 AC 124 ms
87,180 KB
testcase_28 AC 145 ms
97,424 KB
testcase_29 AC 47 ms
62,380 KB
testcase_30 AC 48 ms
61,596 KB
testcase_31 AC 61 ms
72,536 KB
testcase_32 AC 155 ms
91,836 KB
testcase_33 AC 45 ms
61,444 KB
testcase_34 AC 148 ms
97,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = sorted(list(map(int,input().split())))
M = (n+2)*100
ans = 0
dp = [[0]*M for i in range(n+1)]

dp[0][0] = 1
for a in A:
    ndp = [[0]*M for i in range(n+1)]

    for i in range(n+1):
        for j in range(M):
            if dp[i][j] == 0:
                continue
            ndp[i][j] += dp[i][j]
            ndp[i+1][j+a] += dp[i][j]
            if i > 0 and a*i <= j+a and (j+a)%i == 0:
                ans += dp[i][j]
    dp = ndp
print(ans)
0