結果

問題 No.1825 Except One
ユーザー rlangevinrlangevin
提出日時 2024-03-26 12:17:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 489 ms / 3,000 ms
コード長 506 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 106,752 KB
最終ジャッジ日時 2024-09-30 14:14:22
合計ジャッジ時間 5,548 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 37 ms
52,480 KB
testcase_03 AC 281 ms
87,636 KB
testcase_04 AC 125 ms
78,336 KB
testcase_05 AC 79 ms
74,368 KB
testcase_06 AC 60 ms
68,224 KB
testcase_07 AC 260 ms
83,756 KB
testcase_08 AC 264 ms
87,004 KB
testcase_09 AC 53 ms
65,280 KB
testcase_10 AC 211 ms
81,928 KB
testcase_11 AC 82 ms
73,856 KB
testcase_12 AC 137 ms
78,976 KB
testcase_13 AC 100 ms
77,824 KB
testcase_14 AC 41 ms
58,880 KB
testcase_15 AC 52 ms
64,384 KB
testcase_16 AC 53 ms
65,792 KB
testcase_17 AC 46 ms
61,696 KB
testcase_18 AC 42 ms
58,368 KB
testcase_19 AC 52 ms
64,512 KB
testcase_20 AC 51 ms
63,488 KB
testcase_21 AC 47 ms
61,696 KB
testcase_22 AC 49 ms
63,104 KB
testcase_23 AC 52 ms
64,512 KB
testcase_24 AC 98 ms
77,440 KB
testcase_25 AC 76 ms
73,344 KB
testcase_26 AC 55 ms
66,304 KB
testcase_27 AC 200 ms
82,152 KB
testcase_28 AC 424 ms
99,092 KB
testcase_29 AC 61 ms
68,480 KB
testcase_30 AC 72 ms
73,856 KB
testcase_31 AC 77 ms
73,600 KB
testcase_32 AC 327 ms
88,408 KB
testcase_33 AC 65 ms
68,736 KB
testcase_34 AC 489 ms
106,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = sorted(list(map(int, input().split())))
ans = 0
C = N + 5
S = sum(A) + 5
pre = [[0] * S for _ in range(C)]
pre[0][0] = 1
for a in A:
    dp = [[0] * S for _ in range(C)]
    for c in range(C):
        for s in range(S):
            dp[c][s] += pre[c][s]
            if c and s - a >= 0:
                dp[c][s] += pre[c - 1][s - a]
                if c >= 2 and s % (c - 1) == 0 and s // (c - 1) >= a:
                    ans += pre[c - 1][s - a]
    pre, dp = dp, pre
    
print(ans)
0