結果

問題 No.1825 Except One
ユーザー titiatitia
提出日時 2022-01-28 23:32:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 3,000 ms
コード長 605 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 66,088 KB
最終ジャッジ日時 2024-06-10 11:23:05
合計ジャッジ時間 3,128 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,164 KB
testcase_01 AC 38 ms
52,308 KB
testcase_02 AC 38 ms
51,700 KB
testcase_03 AC 99 ms
65,864 KB
testcase_04 AC 64 ms
64,272 KB
testcase_05 AC 53 ms
64,120 KB
testcase_06 AC 44 ms
59,140 KB
testcase_07 AC 92 ms
65,800 KB
testcase_08 AC 92 ms
65,120 KB
testcase_09 AC 46 ms
60,148 KB
testcase_10 AC 76 ms
64,848 KB
testcase_11 AC 55 ms
63,920 KB
testcase_12 AC 66 ms
64,748 KB
testcase_13 AC 61 ms
63,992 KB
testcase_14 AC 37 ms
52,884 KB
testcase_15 AC 45 ms
58,776 KB
testcase_16 AC 45 ms
60,176 KB
testcase_17 AC 37 ms
52,124 KB
testcase_18 AC 38 ms
52,940 KB
testcase_19 AC 41 ms
58,388 KB
testcase_20 AC 42 ms
58,272 KB
testcase_21 AC 41 ms
58,720 KB
testcase_22 AC 41 ms
57,876 KB
testcase_23 AC 42 ms
57,988 KB
testcase_24 AC 50 ms
60,748 KB
testcase_25 AC 48 ms
61,324 KB
testcase_26 AC 42 ms
59,276 KB
testcase_27 AC 64 ms
63,040 KB
testcase_28 AC 96 ms
63,932 KB
testcase_29 AC 47 ms
61,336 KB
testcase_30 AC 44 ms
60,020 KB
testcase_31 AC 52 ms
62,940 KB
testcase_32 AC 95 ms
66,088 KB
testcase_33 AC 42 ms
58,960 KB
testcase_34 AC 106 ms
64,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
A=list(map(int,input().split()))

# x個なら、和が(x-1)の倍数k*(x-1)で、各数字がk以下

A.sort()

SUM=sum(A)

DP=[[0]*(SUM+1) for i in range(N+1)]
DP[0][0]=1

ANS=0
for a in A:
    for i in range(N-1,-1,-1):
        for j in range(SUM-a,-1,-1):
            if DP[i][j]==0:
                continue

            else:
                if i>=1 and (j+a)%i==0:
                    k=(j+a)//i
                    if a<=k:
                        ANS+=DP[i][j]
                        
                DP[i+1][j+a]+=DP[i][j]

print(ANS)
    
0