結果

問題 No.1825 Except One
ユーザー mkawa2mkawa2
提出日時 2022-01-28 21:56:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,247 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 67,460 KB
最終ジャッジ日時 2024-06-09 15:00:24
合計ジャッジ時間 3,168 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
59,604 KB
testcase_01 AC 41 ms
60,424 KB
testcase_02 AC 42 ms
60,840 KB
testcase_03 AC 57 ms
66,332 KB
testcase_04 AC 50 ms
65,556 KB
testcase_05 AC 47 ms
64,724 KB
testcase_06 AC 42 ms
60,912 KB
testcase_07 AC 58 ms
67,460 KB
testcase_08 AC 56 ms
66,596 KB
testcase_09 AC 42 ms
61,088 KB
testcase_10 AC 60 ms
65,792 KB
testcase_11 AC 53 ms
65,484 KB
testcase_12 AC 58 ms
66,080 KB
testcase_13 AC 53 ms
65,680 KB
testcase_14 AC 43 ms
61,512 KB
testcase_15 AC 44 ms
60,872 KB
testcase_16 AC 43 ms
60,908 KB
testcase_17 AC 41 ms
61,604 KB
testcase_18 WA -
testcase_19 AC 42 ms
60,988 KB
testcase_20 AC 42 ms
61,312 KB
testcase_21 AC 42 ms
61,412 KB
testcase_22 AC 43 ms
61,540 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 49 ms
64,600 KB
testcase_26 AC 41 ms
61,440 KB
testcase_27 AC 51 ms
66,008 KB
testcase_28 WA -
testcase_29 AC 41 ms
62,484 KB
testcase_30 AC 44 ms
62,628 KB
testcase_31 AC 44 ms
63,604 KB
testcase_32 AC 57 ms
66,152 KB
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = (1<<63)-1
inf = (1 << 32)-1
# md = 10**9+7
md = 998244353

from collections import defaultdict

# size,sum
# 5000*100*50
# 125000000

n = II()
aa = sorted(LI())
dp = [[0]*5001 for _ in range(n+1)]

ans = 0
for i, a in enumerate(aa):
    for m in range(i, -1, -1):
        for s in range(50*i+1):
            pre = dp[m][s]
            if pre == 0: continue
            if s+a >= a*m:
                dp[m+1][s+a] += pre
    dp[1][a] += 1
# p2D(dp)

ans = 0
for m in range(2, n+1):
    for i in range(5000):
        if (m-1)*i > 5000: break
        ans += dp[m][(m-1)*i]

print(ans)
0