結果

問題 No.1825 Except One
ユーザー mkawa2mkawa2
提出日時 2022-01-29 00:09:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,131 bytes
コンパイル時間 1,018 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 63,744 KB
最終ジャッジ日時 2024-12-30 13:41:10
合計ジャッジ時間 3,614 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,968 KB
testcase_01 AC 47 ms
52,352 KB
testcase_02 AC 48 ms
57,856 KB
testcase_03 AC 74 ms
63,104 KB
testcase_04 AC 64 ms
62,720 KB
testcase_05 AC 59 ms
60,800 KB
testcase_06 AC 49 ms
58,112 KB
testcase_07 AC 72 ms
63,744 KB
testcase_08 AC 72 ms
63,232 KB
testcase_09 AC 48 ms
57,728 KB
testcase_10 AC 66 ms
62,720 KB
testcase_11 AC 60 ms
62,208 KB
testcase_12 AC 64 ms
62,336 KB
testcase_13 AC 61 ms
61,824 KB
testcase_14 AC 43 ms
51,968 KB
testcase_15 AC 50 ms
57,984 KB
testcase_16 AC 49 ms
58,112 KB
testcase_17 AC 45 ms
52,352 KB
testcase_18 WA -
testcase_19 AC 51 ms
57,344 KB
testcase_20 AC 46 ms
57,984 KB
testcase_21 AC 45 ms
51,968 KB
testcase_22 AC 45 ms
52,096 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 56 ms
60,544 KB
testcase_26 AC 51 ms
58,368 KB
testcase_27 AC 60 ms
61,312 KB
testcase_28 WA -
testcase_29 AC 50 ms
58,752 KB
testcase_30 AC 53 ms
58,496 KB
testcase_31 AC 56 ms
60,416 KB
testcase_32 AC 71 ms
62,720 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