結果

問題 No.1825 Except One
ユーザー ShirotsumeShirotsume
提出日時 2021-12-20 22:09:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 876 ms / 3,000 ms
コード長 584 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 82,904 KB
実行使用メモリ 279,312 KB
最終ジャッジ日時 2024-06-10 11:14:34
合計ジャッジ時間 18,879 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 357 ms
278,556 KB
testcase_01 AC 355 ms
278,848 KB
testcase_02 AC 357 ms
278,652 KB
testcase_03 AC 780 ms
279,244 KB
testcase_04 AC 544 ms
278,668 KB
testcase_05 AC 467 ms
279,304 KB
testcase_06 AC 359 ms
279,036 KB
testcase_07 AC 760 ms
278,832 KB
testcase_08 AC 723 ms
278,456 KB
testcase_09 AC 367 ms
278,784 KB
testcase_10 AC 676 ms
278,832 KB
testcase_11 AC 469 ms
278,524 KB
testcase_12 AC 539 ms
278,900 KB
testcase_13 AC 530 ms
278,588 KB
testcase_14 AC 411 ms
278,520 KB
testcase_15 AC 366 ms
278,400 KB
testcase_16 AC 355 ms
278,988 KB
testcase_17 AC 379 ms
278,708 KB
testcase_18 AC 379 ms
278,784 KB
testcase_19 AC 370 ms
278,592 KB
testcase_20 AC 376 ms
278,884 KB
testcase_21 AC 401 ms
278,768 KB
testcase_22 AC 384 ms
278,440 KB
testcase_23 AC 379 ms
279,312 KB
testcase_24 AC 478 ms
278,696 KB
testcase_25 AC 481 ms
278,736 KB
testcase_26 AC 446 ms
278,680 KB
testcase_27 AC 846 ms
278,724 KB
testcase_28 AC 791 ms
278,728 KB
testcase_29 AC 371 ms
278,564 KB
testcase_30 AC 367 ms
278,948 KB
testcase_31 AC 430 ms
279,012 KB
testcase_32 AC 757 ms
278,864 KB
testcase_33 AC 381 ms
278,520 KB
testcase_34 AC 876 ms
279,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

    
def solve(n, a):
    dp = [[[0 for _ in range(60)]  for _ in range(6000)] for _ in range(60)]
    dp[0][0][0] = 1
    ans = 0
    a.sort()
    for i in range(n):
        for j in range(0, 5001):
            for k in range(n):
                dp[i + 1][j + a[i]][k + 1] += dp[i][j][k]
                dp[i + 1][j][k] += dp[i][j][k]
                if k >= 1:
                    if (j + a[i]) % k == 0 and k * a[i] <= j + a[i] and dp[i][j][k] > 0:
                        ans += dp[i][j][k]

    return ans

n = int(input())

a = list(map(int,input().split()))

print(solve(n, a))
0