結果

問題 No.1825 Except One
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-01-29 10:13:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 3,000 ms
コード長 416 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 65,408 KB
最終ジャッジ日時 2024-06-10 11:23:56
合計ジャッジ時間 2,626 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
57,988 KB
testcase_01 AC 35 ms
59,540 KB
testcase_02 AC 37 ms
58,976 KB
testcase_03 AC 68 ms
65,256 KB
testcase_04 AC 48 ms
64,776 KB
testcase_05 AC 42 ms
62,204 KB
testcase_06 AC 35 ms
59,128 KB
testcase_07 AC 61 ms
65,408 KB
testcase_08 AC 61 ms
65,024 KB
testcase_09 AC 36 ms
59,924 KB
testcase_10 AC 57 ms
65,112 KB
testcase_11 AC 46 ms
63,312 KB
testcase_12 AC 49 ms
64,916 KB
testcase_13 AC 46 ms
62,252 KB
testcase_14 AC 36 ms
52,492 KB
testcase_15 AC 38 ms
58,372 KB
testcase_16 AC 37 ms
59,532 KB
testcase_17 AC 36 ms
58,052 KB
testcase_18 AC 31 ms
52,340 KB
testcase_19 AC 36 ms
57,788 KB
testcase_20 AC 37 ms
58,864 KB
testcase_21 AC 36 ms
58,020 KB
testcase_22 AC 35 ms
58,772 KB
testcase_23 AC 34 ms
58,368 KB
testcase_24 AC 45 ms
61,676 KB
testcase_25 AC 40 ms
60,636 KB
testcase_26 AC 36 ms
59,180 KB
testcase_27 AC 51 ms
62,300 KB
testcase_28 AC 57 ms
63,936 KB
testcase_29 AC 38 ms
60,904 KB
testcase_30 AC 38 ms
58,372 KB
testcase_31 AC 41 ms
62,596 KB
testcase_32 AC 64 ms
64,752 KB
testcase_33 AC 36 ms
58,352 KB
testcase_34 AC 54 ms
63,528 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 ind,a in enumerate(A):
    for i in range(ind+1)[::-1]:
        for j in range(100*(ind+1))[::-1]:
            if dp[i][j] == 0:
                continue
            dp[i+1][j+a] += dp[i][j]
            if i and a*i <= j+a and (j+a)%i == 0:
                ans += dp[i][j]
print(ans)
0