結果

問題 No.1825 Except One
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-28 22:14:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,774 ms / 3,000 ms
コード長 932 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 279,780 KB
最終ジャッジ日時 2024-06-10 11:19:11
合計ジャッジ時間 10,012 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,060 KB
testcase_01 AC 41 ms
54,676 KB
testcase_02 AC 37 ms
54,984 KB
testcase_03 AC 1,774 ms
273,684 KB
testcase_04 AC 360 ms
166,936 KB
testcase_05 AC 92 ms
83,288 KB
testcase_06 AC 38 ms
54,328 KB
testcase_07 AC 1,700 ms
279,780 KB
testcase_08 AC 1,533 ms
270,592 KB
testcase_09 AC 40 ms
55,688 KB
testcase_10 AC 852 ms
216,080 KB
testcase_11 AC 155 ms
103,396 KB
testcase_12 AC 399 ms
168,400 KB
testcase_13 AC 188 ms
117,948 KB
testcase_14 AC 38 ms
54,488 KB
testcase_15 AC 37 ms
55,288 KB
testcase_16 AC 36 ms
54,980 KB
testcase_17 AC 38 ms
53,812 KB
testcase_18 AC 36 ms
55,588 KB
testcase_19 AC 37 ms
53,408 KB
testcase_20 AC 36 ms
53,892 KB
testcase_21 AC 37 ms
54,952 KB
testcase_22 AC 38 ms
54,200 KB
testcase_23 AC 38 ms
54,392 KB
testcase_24 AC 38 ms
54,260 KB
testcase_25 AC 38 ms
54,444 KB
testcase_26 AC 37 ms
54,548 KB
testcase_27 AC 40 ms
60,056 KB
testcase_28 AC 44 ms
63,144 KB
testcase_29 AC 42 ms
60,184 KB
testcase_30 AC 38 ms
53,624 KB
testcase_31 AC 86 ms
79,692 KB
testcase_32 AC 817 ms
191,712 KB
testcase_33 AC 40 ms
54,080 KB
testcase_34 AC 48 ms
63,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():

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

    #A.sort(reverse=True)

    from collections import defaultdict
    dp = defaultdict(lambda: 0)
    def getindex(k, s, M):
        return (k<<36)+(s<<18)+M
    dp[getindex(0, 0, 0)] = 1
    for a in A:
        nx = defaultdict(lambda: 0)
        for p, v in dp.items():
            k = p>>36
            r = p-(k<<36)
            s = r>>18
            M = r-(s<<18)
            #if s < M*(k-1):
                #continue
            nx[getindex(k, s, M)] += v
            nx[getindex(k+1, s+a, max(M, a))] += v
        dp = nx
    #print(dp)
    ans = 0
    for p, v in dp.items():
        k = p>>36
        r = p-(k<<36)
        s = r>>18
        M = r-(s<<18)
        if k <= 1:
            continue
        if s%(k-1) == 0:
            x = s//(k-1)
            if x >= M:
                ans += v
    print(ans)

if __name__ == '__main__':
    main()
0