結果

問題 No.1825 Except One
ユーザー roarisroaris
提出日時 2022-02-13 21:49:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 502 ms / 3,000 ms
コード長 514 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 98,992 KB
最終ジャッジ日時 2024-06-29 05:50:14
合計ジャッジ時間 6,971 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
62,092 KB
testcase_01 AC 42 ms
62,096 KB
testcase_02 AC 47 ms
65,208 KB
testcase_03 AC 496 ms
98,992 KB
testcase_04 AC 191 ms
80,496 KB
testcase_05 AC 90 ms
77,560 KB
testcase_06 AC 50 ms
65,472 KB
testcase_07 AC 455 ms
93,224 KB
testcase_08 AC 446 ms
93,112 KB
testcase_09 AC 52 ms
65,860 KB
testcase_10 AC 301 ms
86,776 KB
testcase_11 AC 117 ms
77,520 KB
testcase_12 AC 197 ms
81,060 KB
testcase_13 AC 128 ms
78,388 KB
testcase_14 AC 34 ms
52,812 KB
testcase_15 AC 48 ms
65,296 KB
testcase_16 AC 49 ms
65,208 KB
testcase_17 AC 42 ms
61,564 KB
testcase_18 AC 33 ms
52,604 KB
testcase_19 AC 47 ms
65,296 KB
testcase_20 AC 48 ms
65,212 KB
testcase_21 AC 40 ms
61,748 KB
testcase_22 AC 48 ms
64,608 KB
testcase_23 AC 47 ms
64,012 KB
testcase_24 AC 111 ms
77,980 KB
testcase_25 AC 131 ms
77,924 KB
testcase_26 AC 61 ms
71,336 KB
testcase_27 AC 375 ms
92,036 KB
testcase_28 AC 498 ms
97,692 KB
testcase_29 AC 53 ms
67,360 KB
testcase_30 AC 63 ms
71,084 KB
testcase_31 AC 80 ms
75,272 KB
testcase_32 AC 468 ms
93,520 KB
testcase_33 AC 52 ms
67,968 KB
testcase_34 AC 502 ms
97,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
A.sort()
dp = [[0]*(N*100+1) for _ in range(N+1)]
dp[0][0] = 1
ans = 0

for i in range(N):
    ndp = [[0]*(N*100+1) for _ in range(N+1)]
    
    for j in range(N):
        for k in range(N*100):
            ndp[j][k] += dp[j][k]

            if k+A[i]<=N*100:
                ndp[j+1][k+A[i]] += dp[j][k]
                
                if j>=1 and (k+A[i])%j==0 and A[i]<=(k+A[i])//j:
                    ans += ndp[j+1][k+A[i]]
    
    dp = ndp

print(ans)
0