結果

問題 No.1825 Except One
ユーザー mkawa2mkawa2
提出日時 2022-01-29 00:09:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,131 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 64,708 KB
最終ジャッジ日時 2024-06-09 17:42:08
合計ジャッジ時間 2,649 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,920 KB
testcase_01 AC 37 ms
53,212 KB
testcase_02 AC 39 ms
58,600 KB
testcase_03 AC 54 ms
64,000 KB
testcase_04 AC 45 ms
63,792 KB
testcase_05 AC 41 ms
62,248 KB
testcase_06 AC 37 ms
58,476 KB
testcase_07 AC 51 ms
64,708 KB
testcase_08 AC 52 ms
63,928 KB
testcase_09 AC 38 ms
59,552 KB
testcase_10 AC 50 ms
63,700 KB
testcase_11 AC 43 ms
64,468 KB
testcase_12 AC 47 ms
63,236 KB
testcase_13 AC 46 ms
63,748 KB
testcase_14 AC 34 ms
54,000 KB
testcase_15 AC 38 ms
58,844 KB
testcase_16 AC 35 ms
59,100 KB
testcase_17 AC 34 ms
52,660 KB
testcase_18 WA -
testcase_19 AC 36 ms
59,520 KB
testcase_20 AC 37 ms
58,568 KB
testcase_21 AC 33 ms
53,608 KB
testcase_22 AC 33 ms
52,872 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 41 ms
61,344 KB
testcase_26 AC 36 ms
59,532 KB
testcase_27 AC 46 ms
62,512 KB
testcase_28 WA -
testcase_29 AC 38 ms
59,740 KB
testcase_30 AC 39 ms
60,372 KB
testcase_31 AC 40 ms
60,540 KB
testcase_32 AC 51 ms
64,372 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

# 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, 0, -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
                if (s+a)%m == 0: ans += pre
    dp[1][a] += 1
# p2D(dp)

print(ans)
0